aws-sdk-rds 1.147.0 → 1.148.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/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +242 -405
- data/lib/aws-sdk-rds/db_cluster.rb +37 -96
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +22 -25
- data/lib/aws-sdk-rds/db_instance.rb +45 -173
- data/lib/aws-sdk-rds/db_snapshot.rb +23 -29
- data/lib/aws-sdk-rds/resource.rb +43 -134
- data/lib/aws-sdk-rds/types.rb +157 -395
- data/lib/aws-sdk-rds/waiters.rb +137 -0
- data/lib/aws-sdk-rds.rb +1 -1
- metadata +2 -2
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -1116,31 +1116,26 @@ module Aws::RDS
|
|
1116
1116
|
# @return [String]
|
1117
1117
|
#
|
1118
1118
|
# @!attribute [rw] pre_signed_url
|
1119
|
-
#
|
1120
|
-
#
|
1121
|
-
#
|
1122
|
-
#
|
1123
|
-
#
|
1124
|
-
# when copying an encrypted DB cluster
|
1125
|
-
#
|
1126
|
-
#
|
1127
|
-
#
|
1128
|
-
#
|
1129
|
-
#
|
1130
|
-
#
|
1131
|
-
#
|
1132
|
-
#
|
1133
|
-
# `
|
1134
|
-
#
|
1135
|
-
#
|
1136
|
-
#
|
1137
|
-
#
|
1138
|
-
#
|
1139
|
-
# encrypt the copy of the DB cluster snapshot in the destination
|
1140
|
-
# Amazon Web Services Region. This is the same identifier for both
|
1141
|
-
# the `CopyDBClusterSnapshot` operation that is called in the
|
1142
|
-
# destination Amazon Web Services Region, and the operation
|
1143
|
-
# contained in the presigned URL.
|
1119
|
+
# The URL that contains a Signature Version 4 signed request for the
|
1120
|
+
# `CopyDBClusterSnapshot` API action in the Amazon Web Services Region
|
1121
|
+
# that contains the source DB cluster snapshot to copy. The
|
1122
|
+
# `PreSignedUrl` parameter must be used when copying an encrypted DB
|
1123
|
+
# cluster snapshot from another Amazon Web Services Region. Don't
|
1124
|
+
# specify `PreSignedUrl` when you are copying an encrypted DB cluster
|
1125
|
+
# snapshot in the same Amazon Web Services Region.
|
1126
|
+
#
|
1127
|
+
# The pre-signed URL must be a valid request for the
|
1128
|
+
# `CopyDBClusterSnapshot` API action that can be executed in the
|
1129
|
+
# source Amazon Web Services Region that contains the encrypted DB
|
1130
|
+
# cluster snapshot to be copied. The pre-signed URL request must
|
1131
|
+
# contain the following parameter values:
|
1132
|
+
#
|
1133
|
+
# * `KmsKeyId` - The Amazon Web Services KMS key identifier for the
|
1134
|
+
# KMS key to use to encrypt the copy of the DB cluster snapshot in
|
1135
|
+
# the destination Amazon Web Services Region. This is the same
|
1136
|
+
# identifier for both the `CopyDBClusterSnapshot` action that is
|
1137
|
+
# called in the destination Amazon Web Services Region, and the
|
1138
|
+
# action contained in the pre-signed URL.
|
1144
1139
|
#
|
1145
1140
|
# * `DestinationRegion` - The name of the Amazon Web Services Region
|
1146
1141
|
# that the DB cluster snapshot is to be created in.
|
@@ -1162,8 +1157,9 @@ module Aws::RDS
|
|
1162
1157
|
# <note markdown="1"> If you are using an Amazon Web Services SDK tool or the CLI, you can
|
1163
1158
|
# specify `SourceRegion` (or `--source-region` for the CLI) instead of
|
1164
1159
|
# specifying `PreSignedUrl` manually. Specifying `SourceRegion`
|
1165
|
-
# autogenerates a
|
1166
|
-
# operation that can
|
1160
|
+
# autogenerates a pre-signed URL that is a valid request for the
|
1161
|
+
# operation that can be executed in the source Amazon Web Services
|
1162
|
+
# Region.
|
1167
1163
|
#
|
1168
1164
|
# </note>
|
1169
1165
|
#
|
@@ -1344,7 +1340,9 @@ module Aws::RDS
|
|
1344
1340
|
# must be the Amazon Resource Name (ARN) of the shared DB snapshot.
|
1345
1341
|
#
|
1346
1342
|
# If you are copying an encrypted snapshot this parameter must be in
|
1347
|
-
# the ARN format for the source Amazon Web Services Region
|
1343
|
+
# the ARN format for the source Amazon Web Services Region, and must
|
1344
|
+
# match the `SourceDBSnapshotIdentifier` in the `PreSignedUrl`
|
1345
|
+
# parameter.
|
1348
1346
|
#
|
1349
1347
|
# Constraints:
|
1350
1348
|
#
|
@@ -1415,46 +1413,40 @@ module Aws::RDS
|
|
1415
1413
|
# @return [Boolean]
|
1416
1414
|
#
|
1417
1415
|
# @!attribute [rw] pre_signed_url
|
1418
|
-
#
|
1419
|
-
#
|
1420
|
-
#
|
1421
|
-
# the source Amazon Web Services Region that contains the source DB
|
1422
|
-
# snapshot to copy.
|
1423
|
-
#
|
1424
|
-
# This setting applies only to Amazon Web Services GovCloud (US)
|
1425
|
-
# Regions. It's ignored in other Amazon Web Services Regions.
|
1416
|
+
# The URL that contains a Signature Version 4 signed request for the
|
1417
|
+
# `CopyDBSnapshot` API action in the source Amazon Web Services Region
|
1418
|
+
# that contains the source DB snapshot to copy.
|
1426
1419
|
#
|
1427
1420
|
# You must specify this parameter when you copy an encrypted DB
|
1428
1421
|
# snapshot from another Amazon Web Services Region by using the Amazon
|
1429
1422
|
# RDS API. Don't specify `PreSignedUrl` when you are copying an
|
1430
1423
|
# encrypted DB snapshot in the same Amazon Web Services Region.
|
1431
1424
|
#
|
1432
|
-
# The presigned URL must be a valid request for the
|
1433
|
-
#
|
1434
|
-
#
|
1435
|
-
#
|
1436
|
-
# following parameter values:
|
1425
|
+
# The presigned URL must be a valid request for the `CopyDBSnapshot`
|
1426
|
+
# API action that can be executed in the source Amazon Web Services
|
1427
|
+
# Region that contains the encrypted DB snapshot to be copied. The
|
1428
|
+
# presigned URL request must contain the following parameter values:
|
1437
1429
|
#
|
1438
1430
|
# * `DestinationRegion` - The Amazon Web Services Region that the
|
1439
1431
|
# encrypted DB snapshot is copied to. This Amazon Web Services
|
1440
|
-
# Region is the same one where the `CopyDBSnapshot`
|
1441
|
-
#
|
1432
|
+
# Region is the same one where the `CopyDBSnapshot` action is called
|
1433
|
+
# that contains this presigned URL.
|
1442
1434
|
#
|
1443
1435
|
# For example, if you copy an encrypted DB snapshot from the
|
1444
1436
|
# us-west-2 Amazon Web Services Region to the us-east-1 Amazon Web
|
1445
|
-
# Services Region, then you call the `CopyDBSnapshot`
|
1446
|
-
#
|
1447
|
-
#
|
1437
|
+
# Services Region, then you call the `CopyDBSnapshot` action in the
|
1438
|
+
# us-east-1 Amazon Web Services Region and provide a presigned URL
|
1439
|
+
# that contains a call to the `CopyDBSnapshot` action in the
|
1448
1440
|
# us-west-2 Amazon Web Services Region. For this example, the
|
1449
1441
|
# `DestinationRegion` in the presigned URL must be set to the
|
1450
1442
|
# us-east-1 Amazon Web Services Region.
|
1451
1443
|
#
|
1452
|
-
# * `KmsKeyId` - The KMS key identifier for the
|
1453
|
-
# encrypt the copy of the DB snapshot in the
|
1454
|
-
# Services Region. This is the same
|
1455
|
-
# `CopyDBSnapshot`
|
1456
|
-
# Amazon Web Services Region, and the
|
1457
|
-
# presigned URL.
|
1444
|
+
# * `KmsKeyId` - The Amazon Web Services KMS key identifier for the
|
1445
|
+
# KMS key to use to encrypt the copy of the DB snapshot in the
|
1446
|
+
# destination Amazon Web Services Region. This is the same
|
1447
|
+
# identifier for both the `CopyDBSnapshot` action that is called in
|
1448
|
+
# the destination Amazon Web Services Region, and the action
|
1449
|
+
# contained in the presigned URL.
|
1458
1450
|
#
|
1459
1451
|
# * `SourceDBSnapshotIdentifier` - The DB snapshot identifier for the
|
1460
1452
|
# encrypted snapshot to be copied. This identifier must be in the
|
@@ -1472,8 +1464,9 @@ module Aws::RDS
|
|
1472
1464
|
# <note markdown="1"> If you are using an Amazon Web Services SDK tool or the CLI, you can
|
1473
1465
|
# specify `SourceRegion` (or `--source-region` for the CLI) instead of
|
1474
1466
|
# specifying `PreSignedUrl` manually. Specifying `SourceRegion`
|
1475
|
-
# autogenerates a
|
1476
|
-
# operation that can
|
1467
|
+
# autogenerates a pre-signed URL that is a valid request for the
|
1468
|
+
# operation that can be executed in the source Amazon Web Services
|
1469
|
+
# Region.
|
1477
1470
|
#
|
1478
1471
|
# </note>
|
1479
1472
|
#
|
@@ -2206,26 +2199,25 @@ module Aws::RDS
|
|
2206
2199
|
# @return [String]
|
2207
2200
|
#
|
2208
2201
|
# @!attribute [rw] pre_signed_url
|
2209
|
-
#
|
2210
|
-
#
|
2211
|
-
#
|
2212
|
-
#
|
2213
|
-
#
|
2214
|
-
#
|
2215
|
-
#
|
2216
|
-
#
|
2217
|
-
#
|
2218
|
-
#
|
2219
|
-
#
|
2220
|
-
# The presigned URL request must contain the following parameter
|
2202
|
+
# A URL that contains a Signature Version 4 signed request for the
|
2203
|
+
# `CreateDBCluster` action to be called in the source Amazon Web
|
2204
|
+
# Services Region where the DB cluster is replicated from. Specify
|
2205
|
+
# `PreSignedUrl` only when you are performing cross-Region replication
|
2206
|
+
# from an encrypted DB cluster.
|
2207
|
+
#
|
2208
|
+
# The pre-signed URL must be a valid request for the `CreateDBCluster`
|
2209
|
+
# API action that can be executed in the source Amazon Web Services
|
2210
|
+
# Region that contains the encrypted DB cluster to be copied.
|
2211
|
+
#
|
2212
|
+
# The pre-signed URL request must contain the following parameter
|
2221
2213
|
# values:
|
2222
2214
|
#
|
2223
|
-
# * `KmsKeyId` - The KMS key identifier for the
|
2224
|
-
# encrypt the copy of the DB cluster in the
|
2225
|
-
# Services Region. This should refer to the
|
2226
|
-
# the `CreateDBCluster`
|
2227
|
-
# Amazon Web Services Region, and the
|
2228
|
-
#
|
2215
|
+
# * `KmsKeyId` - The Amazon Web Services KMS key identifier for the
|
2216
|
+
# KMS key to use to encrypt the copy of the DB cluster in the
|
2217
|
+
# destination Amazon Web Services Region. This should refer to the
|
2218
|
+
# same KMS key for both the `CreateDBCluster` action that is called
|
2219
|
+
# in the destination Amazon Web Services Region, and the action
|
2220
|
+
# contained in the pre-signed URL.
|
2229
2221
|
#
|
2230
2222
|
# * `DestinationRegion` - The name of the Amazon Web Services Region
|
2231
2223
|
# that Aurora read replica will be created in.
|
@@ -2246,8 +2238,9 @@ module Aws::RDS
|
|
2246
2238
|
# <note markdown="1"> If you are using an Amazon Web Services SDK tool or the CLI, you can
|
2247
2239
|
# specify `SourceRegion` (or `--source-region` for the CLI) instead of
|
2248
2240
|
# specifying `PreSignedUrl` manually. Specifying `SourceRegion`
|
2249
|
-
# autogenerates a
|
2250
|
-
# operation that can
|
2241
|
+
# autogenerates a pre-signed URL that is a valid request for the
|
2242
|
+
# operation that can be executed in the source Amazon Web Services
|
2243
|
+
# Region.
|
2251
2244
|
#
|
2252
2245
|
# </note>
|
2253
2246
|
#
|
@@ -2265,7 +2258,7 @@ module Aws::RDS
|
|
2265
2258
|
# accounts. By default, mapping isn't enabled.
|
2266
2259
|
#
|
2267
2260
|
# For more information, see [ IAM Database Authentication][1] in the
|
2268
|
-
# *Amazon Aurora User Guide
|
2261
|
+
# *Amazon Aurora User Guide.*.
|
2269
2262
|
#
|
2270
2263
|
# Valid for: Aurora DB clusters only
|
2271
2264
|
#
|
@@ -2342,9 +2335,6 @@ module Aws::RDS
|
|
2342
2335
|
# The `multimaster` engine mode only applies for DB clusters created
|
2343
2336
|
# with Aurora MySQL version 5.6.10a.
|
2344
2337
|
#
|
2345
|
-
# The `serverless` engine mode only applies for Aurora Serverless v1
|
2346
|
-
# DB clusters.
|
2347
|
-
#
|
2348
2338
|
# For Aurora PostgreSQL, the `global` engine mode isn't required, and
|
2349
2339
|
# both the `parallelquery` and the `multimaster` engine modes
|
2350
2340
|
# currently aren't supported.
|
@@ -2353,25 +2343,22 @@ module Aws::RDS
|
|
2353
2343
|
# information, see the following sections in the *Amazon Aurora User
|
2354
2344
|
# Guide*\:
|
2355
2345
|
#
|
2356
|
-
# * [Limitations of Aurora Serverless v1][1]
|
2357
|
-
#
|
2358
|
-
# * [Requirements for Aurora Serverless v2][2]
|
2346
|
+
# * [ Limitations of Aurora Serverless v1][1]
|
2359
2347
|
#
|
2360
|
-
# * [Limitations of Parallel Query][
|
2348
|
+
# * [ Limitations of Parallel Query][2]
|
2361
2349
|
#
|
2362
|
-
# * [Limitations of Aurora Global Databases][
|
2350
|
+
# * [ Limitations of Aurora Global Databases][3]
|
2363
2351
|
#
|
2364
|
-
# * [Limitations of Multi-Master Clusters][
|
2352
|
+
# * [ Limitations of Multi-Master Clusters][4]
|
2365
2353
|
#
|
2366
2354
|
# Valid for: Aurora DB clusters only
|
2367
2355
|
#
|
2368
2356
|
#
|
2369
2357
|
#
|
2370
2358
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless.html#aurora-serverless.limitations
|
2371
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-
|
2372
|
-
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-
|
2373
|
-
# [4]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-
|
2374
|
-
# [5]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-multi-master.html#aurora-multi-master-limitations
|
2359
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-mysql-parallel-query.html#aurora-mysql-parallel-query-limitations
|
2360
|
+
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-global-database.html#aurora-global-database.limitations
|
2361
|
+
# [4]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-multi-master.html#aurora-multi-master-limitations
|
2375
2362
|
# @return [String]
|
2376
2363
|
#
|
2377
2364
|
# @!attribute [rw] scaling_configuration
|
@@ -2635,27 +2622,8 @@ module Aws::RDS
|
|
2635
2622
|
# @return [String]
|
2636
2623
|
#
|
2637
2624
|
# @!attribute [rw] performance_insights_retention_period
|
2638
|
-
# The
|
2639
|
-
#
|
2640
|
-
#
|
2641
|
-
# * 7
|
2642
|
-
#
|
2643
|
-
# * *month* * 31, where *month* is a number of months from 1-23
|
2644
|
-
#
|
2645
|
-
# * 731
|
2646
|
-
#
|
2647
|
-
# For example, the following values are valid:
|
2648
|
-
#
|
2649
|
-
# * 93 (3 months * 31)
|
2650
|
-
#
|
2651
|
-
# * 341 (11 months * 31)
|
2652
|
-
#
|
2653
|
-
# * 589 (19 months * 31)
|
2654
|
-
#
|
2655
|
-
# * 731
|
2656
|
-
#
|
2657
|
-
# If you specify a retention period such as 94, which isn't a valid
|
2658
|
-
# value, RDS issues an error.
|
2625
|
+
# The amount of time, in days, to retain Performance Insights data.
|
2626
|
+
# Valid values are 7 or 731 (2 years).
|
2659
2627
|
#
|
2660
2628
|
# Valid for: Multi-AZ DB clusters only
|
2661
2629
|
# @return [Integer]
|
@@ -3261,16 +3229,14 @@ module Aws::RDS
|
|
3261
3229
|
#
|
3262
3230
|
# @!attribute [rw] db_instance_class
|
3263
3231
|
# The compute and memory capacity of the DB instance, for example
|
3264
|
-
# db.
|
3232
|
+
# db.m4.large. Not all DB instance classes are available in all Amazon
|
3265
3233
|
# Web Services Regions, or for all database engines. For the full list
|
3266
3234
|
# of DB instance classes, and availability for your engine, see [DB
|
3267
|
-
#
|
3268
|
-
# instance classes][2] in the *Amazon Aurora User Guide*.
|
3235
|
+
# Instance Class][1] in the *Amazon RDS User Guide*.
|
3269
3236
|
#
|
3270
3237
|
#
|
3271
3238
|
#
|
3272
3239
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html
|
3273
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Concepts.DBInstanceClass.html
|
3274
3240
|
# @return [String]
|
3275
3241
|
#
|
3276
3242
|
# @!attribute [rw] engine
|
@@ -3373,9 +3339,7 @@ module Aws::RDS
|
|
3373
3339
|
# @!attribute [rw] db_security_groups
|
3374
3340
|
# A list of DB security groups to associate with this DB instance.
|
3375
3341
|
#
|
3376
|
-
#
|
3377
|
-
# longer used to create new DB instances. Use the
|
3378
|
-
# `VpcSecurityGroupIds` setting instead.
|
3342
|
+
# Default: The default DB security group for the database engine.
|
3379
3343
|
# @return [Array<String>]
|
3380
3344
|
#
|
3381
3345
|
# @!attribute [rw] vpc_security_group_ids
|
@@ -3481,7 +3445,7 @@ module Aws::RDS
|
|
3481
3445
|
#
|
3482
3446
|
# * Can't be set to 0 if the DB instance is a source to read replicas
|
3483
3447
|
#
|
3484
|
-
# * Can't be set to 0 for an RDS Custom for Oracle DB instance
|
3448
|
+
# * Can't be set to 0 or 35 for an RDS Custom for Oracle DB instance
|
3485
3449
|
# @return [Integer]
|
3486
3450
|
#
|
3487
3451
|
# @!attribute [rw] preferred_backup_window
|
@@ -3567,18 +3531,13 @@ module Aws::RDS
|
|
3567
3531
|
# DB instance is a Multi-AZ deployment.
|
3568
3532
|
#
|
3569
3533
|
# This setting doesn't apply to RDS Custom.
|
3570
|
-
#
|
3571
|
-
# **Amazon Aurora**
|
3572
|
-
#
|
3573
|
-
# Not applicable. DB instance Availability Zones (AZs) are managed by
|
3574
|
-
# the DB cluster.
|
3575
3534
|
# @return [Boolean]
|
3576
3535
|
#
|
3577
3536
|
# @!attribute [rw] engine_version
|
3578
3537
|
# The version number of the database engine to use.
|
3579
3538
|
#
|
3580
3539
|
# For a list of valid engine versions, use the
|
3581
|
-
# `DescribeDBEngineVersions`
|
3540
|
+
# `DescribeDBEngineVersions` action.
|
3582
3541
|
#
|
3583
3542
|
# The following are the database engines and links to information
|
3584
3543
|
# about the major and minor versions that are available with Amazon
|
@@ -3655,10 +3614,6 @@ module Aws::RDS
|
|
3655
3614
|
# `general-public-license`
|
3656
3615
|
#
|
3657
3616
|
# This setting doesn't apply to RDS Custom.
|
3658
|
-
#
|
3659
|
-
# **Amazon Aurora**
|
3660
|
-
#
|
3661
|
-
# Not applicable.
|
3662
3617
|
# @return [String]
|
3663
3618
|
#
|
3664
3619
|
# @!attribute [rw] iops
|
@@ -3672,10 +3627,6 @@ module Aws::RDS
|
|
3672
3627
|
# amount for the DB instance. For SQL Server DB instances, must be a
|
3673
3628
|
# multiple between 1 and 50 of the storage amount for the DB instance.
|
3674
3629
|
#
|
3675
|
-
# **Amazon Aurora**
|
3676
|
-
#
|
3677
|
-
# Not applicable. Storage is managed by the DB cluster.
|
3678
|
-
#
|
3679
3630
|
#
|
3680
3631
|
#
|
3681
3632
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html#USER_PIOPS
|
@@ -3691,10 +3642,6 @@ module Aws::RDS
|
|
3691
3642
|
# associated with a DB instance.
|
3692
3643
|
#
|
3693
3644
|
# This setting doesn't apply to RDS Custom.
|
3694
|
-
#
|
3695
|
-
# **Amazon Aurora**
|
3696
|
-
#
|
3697
|
-
# Not applicable.
|
3698
3645
|
# @return [String]
|
3699
3646
|
#
|
3700
3647
|
# @!attribute [rw] character_set_name
|
@@ -3772,10 +3719,6 @@ module Aws::RDS
|
|
3772
3719
|
# parameter.
|
3773
3720
|
#
|
3774
3721
|
# Default: `io1` if the `Iops` parameter is specified, otherwise `gp2`
|
3775
|
-
#
|
3776
|
-
# **Amazon Aurora**
|
3777
|
-
#
|
3778
|
-
# Not applicable. Storage is managed by the DB cluster.
|
3779
3722
|
# @return [String]
|
3780
3723
|
#
|
3781
3724
|
# @!attribute [rw] tde_credential_arn
|
@@ -3783,10 +3726,6 @@ module Aws::RDS
|
|
3783
3726
|
# TDE encryption.
|
3784
3727
|
#
|
3785
3728
|
# This setting doesn't apply to RDS Custom.
|
3786
|
-
#
|
3787
|
-
# **Amazon Aurora**
|
3788
|
-
#
|
3789
|
-
# Not applicable.
|
3790
3729
|
# @return [String]
|
3791
3730
|
#
|
3792
3731
|
# @!attribute [rw] tde_credential_password
|
@@ -3850,10 +3789,6 @@ module Aws::RDS
|
|
3850
3789
|
#
|
3851
3790
|
# This setting doesn't apply to RDS Custom.
|
3852
3791
|
#
|
3853
|
-
# **Amazon Aurora**
|
3854
|
-
#
|
3855
|
-
# Not applicable. The domain is managed by the DB cluster.
|
3856
|
-
#
|
3857
3792
|
#
|
3858
3793
|
#
|
3859
3794
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/kerberos-authentication.html
|
@@ -3905,10 +3840,6 @@ module Aws::RDS
|
|
3905
3840
|
# the Directory Service.
|
3906
3841
|
#
|
3907
3842
|
# This setting doesn't apply to RDS Custom.
|
3908
|
-
#
|
3909
|
-
# **Amazon Aurora**
|
3910
|
-
#
|
3911
|
-
# Not applicable. The domain is managed by the DB cluster.
|
3912
3843
|
# @return [String]
|
3913
3844
|
#
|
3914
3845
|
# @!attribute [rw] promotion_tier
|
@@ -3942,16 +3873,13 @@ module Aws::RDS
|
|
3942
3873
|
# Services Identity and Access Management (IAM) accounts to database
|
3943
3874
|
# accounts. By default, mapping isn't enabled.
|
3944
3875
|
#
|
3876
|
+
# This setting doesn't apply to RDS Custom or Amazon Aurora. In
|
3877
|
+
# Aurora, mapping Amazon Web Services IAM accounts to database
|
3878
|
+
# accounts is managed by the DB cluster.
|
3879
|
+
#
|
3945
3880
|
# For more information, see [ IAM Database Authentication for MySQL
|
3946
3881
|
# and PostgreSQL][1] in the *Amazon RDS User Guide*.
|
3947
3882
|
#
|
3948
|
-
# This setting doesn't apply to RDS Custom.
|
3949
|
-
#
|
3950
|
-
# **Amazon Aurora**
|
3951
|
-
#
|
3952
|
-
# Not applicable. Mapping Amazon Web Services IAM accounts to database
|
3953
|
-
# accounts is managed by the DB cluster.
|
3954
|
-
#
|
3955
3883
|
#
|
3956
3884
|
#
|
3957
3885
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html
|
@@ -3986,27 +3914,8 @@ module Aws::RDS
|
|
3986
3914
|
# @return [String]
|
3987
3915
|
#
|
3988
3916
|
# @!attribute [rw] performance_insights_retention_period
|
3989
|
-
# The
|
3990
|
-
#
|
3991
|
-
#
|
3992
|
-
# * 7
|
3993
|
-
#
|
3994
|
-
# * *month* * 31, where *month* is a number of months from 1-23
|
3995
|
-
#
|
3996
|
-
# * 731
|
3997
|
-
#
|
3998
|
-
# For example, the following values are valid:
|
3999
|
-
#
|
4000
|
-
# * 93 (3 months * 31)
|
4001
|
-
#
|
4002
|
-
# * 341 (11 months * 31)
|
4003
|
-
#
|
4004
|
-
# * 589 (19 months * 31)
|
4005
|
-
#
|
4006
|
-
# * 731
|
4007
|
-
#
|
4008
|
-
# If you specify a retention period such as 94, which isn't a valid
|
4009
|
-
# value, RDS issues an error.
|
3917
|
+
# The amount of time, in days, to retain Performance Insights data.
|
3918
|
+
# Valid values are 7 or 731 (2 years).
|
4010
3919
|
#
|
4011
3920
|
# This setting doesn't apply to RDS Custom.
|
4012
3921
|
# @return [Integer]
|
@@ -4057,10 +3966,6 @@ module Aws::RDS
|
|
4057
3966
|
# DB instance class of the DB instance.
|
4058
3967
|
#
|
4059
3968
|
# This setting doesn't apply to RDS Custom.
|
4060
|
-
#
|
4061
|
-
# **Amazon Aurora**
|
4062
|
-
#
|
4063
|
-
# Not applicable.
|
4064
3969
|
# @return [Array<Types::ProcessorFeature>]
|
4065
3970
|
#
|
4066
3971
|
# @!attribute [rw] deletion_protection
|
@@ -4091,10 +3996,6 @@ module Aws::RDS
|
|
4091
3996
|
#
|
4092
3997
|
# This setting doesn't apply to RDS Custom.
|
4093
3998
|
#
|
4094
|
-
# **Amazon Aurora**
|
4095
|
-
#
|
4096
|
-
# Not applicable. Storage is managed by the DB cluster.
|
4097
|
-
#
|
4098
3999
|
#
|
4099
4000
|
#
|
4100
4001
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.Autoscaling
|
@@ -4420,8 +4321,7 @@ module Aws::RDS
|
|
4420
4321
|
# specified DB engine for a cross-Region read replica.
|
4421
4322
|
#
|
4422
4323
|
# Specifying a parameter group for this operation is only supported
|
4423
|
-
# for
|
4424
|
-
# Custom.
|
4324
|
+
# for Oracle DB instances. It isn't supported for RDS Custom.
|
4425
4325
|
#
|
4426
4326
|
# Constraints:
|
4427
4327
|
#
|
@@ -4572,16 +4472,9 @@ module Aws::RDS
|
|
4572
4472
|
# @return [String]
|
4573
4473
|
#
|
4574
4474
|
# @!attribute [rw] pre_signed_url
|
4575
|
-
#
|
4576
|
-
#
|
4577
|
-
# Services Region
|
4578
|
-
# Version 4 signed request for the `CreateDBInstanceReadReplica` API
|
4579
|
-
# operation in the source Amazon Web Services Region that contains the
|
4580
|
-
# source DB instance.
|
4581
|
-
#
|
4582
|
-
# This setting applies only to Amazon Web Services GovCloud (US)
|
4583
|
-
# Regions and China Amazon Web Services Regions. It's ignored in
|
4584
|
-
# other Amazon Web Services Regions.
|
4475
|
+
# The URL that contains a Signature Version 4 signed request for the
|
4476
|
+
# `CreateDBInstanceReadReplica` API action in the source Amazon Web
|
4477
|
+
# Services Region that contains the source DB instance.
|
4585
4478
|
#
|
4586
4479
|
# You must specify this parameter when you create an encrypted read
|
4587
4480
|
# replica from another Amazon Web Services Region by using the Amazon
|
@@ -4589,7 +4482,7 @@ module Aws::RDS
|
|
4589
4482
|
# encrypted read replica in the same Amazon Web Services Region.
|
4590
4483
|
#
|
4591
4484
|
# The presigned URL must be a valid request for the
|
4592
|
-
# `CreateDBInstanceReadReplica` API
|
4485
|
+
# `CreateDBInstanceReadReplica` API action that can be executed in the
|
4593
4486
|
# source Amazon Web Services Region that contains the encrypted source
|
4594
4487
|
# DB instance. The presigned URL request must contain the following
|
4595
4488
|
# parameter values:
|
@@ -4597,24 +4490,24 @@ module Aws::RDS
|
|
4597
4490
|
# * `DestinationRegion` - The Amazon Web Services Region that the
|
4598
4491
|
# encrypted read replica is created in. This Amazon Web Services
|
4599
4492
|
# Region is the same one where the `CreateDBInstanceReadReplica`
|
4600
|
-
#
|
4493
|
+
# action is called that contains this presigned URL.
|
4601
4494
|
#
|
4602
4495
|
# For example, if you create an encrypted DB instance in the
|
4603
4496
|
# us-west-1 Amazon Web Services Region, from a source DB instance in
|
4604
4497
|
# the us-east-2 Amazon Web Services Region, then you call the
|
4605
|
-
# `CreateDBInstanceReadReplica`
|
4606
|
-
#
|
4607
|
-
#
|
4608
|
-
#
|
4498
|
+
# `CreateDBInstanceReadReplica` action in the us-east-1 Amazon Web
|
4499
|
+
# Services Region and provide a presigned URL that contains a call
|
4500
|
+
# to the `CreateDBInstanceReadReplica` action in the us-west-2
|
4501
|
+
# Amazon Web Services Region. For this example, the
|
4609
4502
|
# `DestinationRegion` in the presigned URL must be set to the
|
4610
4503
|
# us-east-1 Amazon Web Services Region.
|
4611
4504
|
#
|
4612
|
-
# * `KmsKeyId` - The KMS key identifier for the
|
4613
|
-
# the read replica in the destination Amazon
|
4614
|
-
# This is the same identifier for both the
|
4615
|
-
# `CreateDBInstanceReadReplica`
|
4616
|
-
# destination Amazon Web Services Region, and the
|
4617
|
-
#
|
4505
|
+
# * `KmsKeyId` - The Amazon Web Services KMS key identifier for the
|
4506
|
+
# key to use to encrypt the read replica in the destination Amazon
|
4507
|
+
# Web Services Region. This is the same identifier for both the
|
4508
|
+
# `CreateDBInstanceReadReplica` action that is called in the
|
4509
|
+
# destination Amazon Web Services Region, and the action contained
|
4510
|
+
# in the presigned URL.
|
4618
4511
|
#
|
4619
4512
|
# * `SourceDBInstanceIdentifier` - The DB instance identifier for the
|
4620
4513
|
# encrypted DB instance to be replicated. This identifier must be in
|
@@ -4634,10 +4527,11 @@ module Aws::RDS
|
|
4634
4527
|
# specify `SourceRegion` (or `--source-region` for the CLI) instead of
|
4635
4528
|
# specifying `PreSignedUrl` manually. Specifying `SourceRegion`
|
4636
4529
|
# autogenerates a presigned URL that is a valid request for the
|
4637
|
-
# operation that can
|
4530
|
+
# operation that can be executed in the source Amazon Web Services
|
4531
|
+
# Region.
|
4638
4532
|
#
|
4639
|
-
# `SourceRegion` isn't supported for SQL Server, because
|
4640
|
-
#
|
4533
|
+
# `SourceRegion` isn't supported for SQL Server, because SQL Server
|
4534
|
+
# on Amazon RDS doesn't support cross-Region read replicas.
|
4641
4535
|
#
|
4642
4536
|
# </note>
|
4643
4537
|
#
|
@@ -4696,27 +4590,8 @@ module Aws::RDS
|
|
4696
4590
|
# @return [String]
|
4697
4591
|
#
|
4698
4592
|
# @!attribute [rw] performance_insights_retention_period
|
4699
|
-
# The
|
4700
|
-
#
|
4701
|
-
#
|
4702
|
-
# * 7
|
4703
|
-
#
|
4704
|
-
# * *month* * 31, where *month* is a number of months from 1-23
|
4705
|
-
#
|
4706
|
-
# * 731
|
4707
|
-
#
|
4708
|
-
# For example, the following values are valid:
|
4709
|
-
#
|
4710
|
-
# * 93 (3 months * 31)
|
4711
|
-
#
|
4712
|
-
# * 341 (11 months * 31)
|
4713
|
-
#
|
4714
|
-
# * 589 (19 months * 31)
|
4715
|
-
#
|
4716
|
-
# * 731
|
4717
|
-
#
|
4718
|
-
# If you specify a retention period such as 94, which isn't a valid
|
4719
|
-
# value, RDS issues an error.
|
4593
|
+
# The amount of time, in days, to retain Performance Insights data.
|
4594
|
+
# Valid values are 7 or 731 (2 years).
|
4720
4595
|
#
|
4721
4596
|
# This setting doesn't apply to RDS Custom.
|
4722
4597
|
# @return [Integer]
|
@@ -5647,7 +5522,7 @@ module Aws::RDS
|
|
5647
5522
|
# @return [Boolean]
|
5648
5523
|
#
|
5649
5524
|
# @!attribute [rw] database_name
|
5650
|
-
# The name for your database of up to 64
|
5525
|
+
# The name for your database of up to 64 alpha-numeric characters. If
|
5651
5526
|
# you do not provide a name, Amazon Aurora will not create a database
|
5652
5527
|
# in the global database cluster you are creating.
|
5653
5528
|
# @return [String]
|
@@ -6258,24 +6133,8 @@ module Aws::RDS
|
|
6258
6133
|
# @return [String]
|
6259
6134
|
#
|
6260
6135
|
# @!attribute [rw] performance_insights_retention_period
|
6261
|
-
# The
|
6262
|
-
#
|
6263
|
-
#
|
6264
|
-
# * 7
|
6265
|
-
#
|
6266
|
-
# * *month* * 31, where *month* is a number of months from 1-23
|
6267
|
-
#
|
6268
|
-
# * 731
|
6269
|
-
#
|
6270
|
-
# For example, the following values are valid:
|
6271
|
-
#
|
6272
|
-
# * 93 (3 months * 31)
|
6273
|
-
#
|
6274
|
-
# * 341 (11 months * 31)
|
6275
|
-
#
|
6276
|
-
# * 589 (19 months * 31)
|
6277
|
-
#
|
6278
|
-
# * 731
|
6136
|
+
# The amount of time, in days, to retain Performance Insights data.
|
6137
|
+
# Valid values are 7 or 731 (2 years).
|
6279
6138
|
#
|
6280
6139
|
# This setting is only for non-Aurora Multi-AZ DB clusters.
|
6281
6140
|
# @return [Integer]
|
@@ -7687,24 +7546,8 @@ module Aws::RDS
|
|
7687
7546
|
# @return [String]
|
7688
7547
|
#
|
7689
7548
|
# @!attribute [rw] performance_insights_retention_period
|
7690
|
-
# The
|
7691
|
-
#
|
7692
|
-
#
|
7693
|
-
# * 7
|
7694
|
-
#
|
7695
|
-
# * *month* * 31, where *month* is a number of months from 1-23
|
7696
|
-
#
|
7697
|
-
# * 731
|
7698
|
-
#
|
7699
|
-
# For example, the following values are valid:
|
7700
|
-
#
|
7701
|
-
# * 93 (3 months * 31)
|
7702
|
-
#
|
7703
|
-
# * 341 (11 months * 31)
|
7704
|
-
#
|
7705
|
-
# * 589 (19 months * 31)
|
7706
|
-
#
|
7707
|
-
# * 731
|
7549
|
+
# The amount of time, in days, to retain Performance Insights data.
|
7550
|
+
# Valid values are 7 or 731 (2 years).
|
7708
7551
|
# @return [Integer]
|
7709
7552
|
#
|
7710
7553
|
# @!attribute [rw] enabled_cloudwatch_logs_exports
|
@@ -13450,12 +13293,8 @@ module Aws::RDS
|
|
13450
13293
|
include Aws::Structure
|
13451
13294
|
end
|
13452
13295
|
|
13453
|
-
# This data type is used as a response element in the
|
13454
|
-
#
|
13455
|
-
#
|
13456
|
-
#
|
13457
|
-
#
|
13458
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_DescribeEvents.html
|
13296
|
+
# This data type is used as a response element in the `DescribeEvents`
|
13297
|
+
# action.
|
13459
13298
|
#
|
13460
13299
|
# @!attribute [rw] source_identifier
|
13461
13300
|
# Provides the identifier for the source of the event.
|
@@ -13495,11 +13334,7 @@ module Aws::RDS
|
|
13495
13334
|
end
|
13496
13335
|
|
13497
13336
|
# Contains the results of a successful invocation of the
|
13498
|
-
#
|
13499
|
-
#
|
13500
|
-
#
|
13501
|
-
#
|
13502
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_DescribeEventCategories.html
|
13337
|
+
# `DescribeEventCategories` operation.
|
13503
13338
|
#
|
13504
13339
|
# @!attribute [rw] source_type
|
13505
13340
|
# The source type that the returned categories belong to
|
@@ -15240,27 +15075,8 @@ module Aws::RDS
|
|
15240
15075
|
# @return [String]
|
15241
15076
|
#
|
15242
15077
|
# @!attribute [rw] performance_insights_retention_period
|
15243
|
-
# The
|
15244
|
-
#
|
15245
|
-
#
|
15246
|
-
# * 7
|
15247
|
-
#
|
15248
|
-
# * *month* * 31, where *month* is a number of months from 1-23
|
15249
|
-
#
|
15250
|
-
# * 731
|
15251
|
-
#
|
15252
|
-
# For example, the following values are valid:
|
15253
|
-
#
|
15254
|
-
# * 93 (3 months * 31)
|
15255
|
-
#
|
15256
|
-
# * 341 (11 months * 31)
|
15257
|
-
#
|
15258
|
-
# * 589 (19 months * 31)
|
15259
|
-
#
|
15260
|
-
# * 731
|
15261
|
-
#
|
15262
|
-
# If you specify a retention period such as 94, which isn't a valid
|
15263
|
-
# value, RDS issues an error.
|
15078
|
+
# The amount of time, in days, to retain Performance Insights data.
|
15079
|
+
# Valid values are 7 or 731 (2 years).
|
15264
15080
|
#
|
15265
15081
|
# Valid for: Multi-AZ DB clusters only
|
15266
15082
|
# @return [Integer]
|
@@ -15436,7 +15252,7 @@ module Aws::RDS
|
|
15436
15252
|
# `restore`.
|
15437
15253
|
#
|
15438
15254
|
# <note markdown="1"> To view the list of attributes available to modify, use the
|
15439
|
-
# DescribeDBClusterSnapshotAttributes API
|
15255
|
+
# DescribeDBClusterSnapshotAttributes API action.
|
15440
15256
|
#
|
15441
15257
|
# </note>
|
15442
15258
|
# @return [String]
|
@@ -15585,11 +15401,10 @@ module Aws::RDS
|
|
15585
15401
|
#
|
15586
15402
|
# @!attribute [rw] db_instance_class
|
15587
15403
|
# The new compute and memory capacity of the DB instance, for example
|
15588
|
-
# db.
|
15404
|
+
# db.m4.large. Not all DB instance classes are available in all Amazon
|
15589
15405
|
# Web Services Regions, or for all database engines. For the full list
|
15590
15406
|
# of DB instance classes, and availability for your engine, see [DB
|
15591
|
-
#
|
15592
|
-
# instance classes][2] in the *Amazon Aurora User Guide*.
|
15407
|
+
# Instance Class][1] in the *Amazon RDS User Guide*.
|
15593
15408
|
#
|
15594
15409
|
# If you modify the DB instance class, an outage occurs during the
|
15595
15410
|
# change. The change is applied during the next maintenance window,
|
@@ -15602,7 +15417,6 @@ module Aws::RDS
|
|
15602
15417
|
#
|
15603
15418
|
#
|
15604
15419
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html
|
15605
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Concepts.DBInstanceClass.html
|
15606
15420
|
# @return [String]
|
15607
15421
|
#
|
15608
15422
|
# @!attribute [rw] db_subnet_group_name
|
@@ -15720,7 +15534,7 @@ module Aws::RDS
|
|
15720
15534
|
#
|
15721
15535
|
# Constraints: Must contain from 8 to 128 characters.
|
15722
15536
|
#
|
15723
|
-
# <note markdown="1"> Amazon RDS API
|
15537
|
+
# <note markdown="1"> Amazon RDS API actions never return the password, so this action
|
15724
15538
|
# provides a way to regain access to a primary instance user if the
|
15725
15539
|
# password is lost. This includes restoring privileges that might have
|
15726
15540
|
# been accidentally revoked.
|
@@ -15775,8 +15589,8 @@ module Aws::RDS
|
|
15775
15589
|
# Constraints:
|
15776
15590
|
#
|
15777
15591
|
# * It must be a value from 0 to 35. It can't be set to 0 if the DB
|
15778
|
-
# instance is a source to read replicas. It can't be set to 0
|
15779
|
-
# an RDS Custom for Oracle DB instance.
|
15592
|
+
# instance is a source to read replicas. It can't be set to 0 or 35
|
15593
|
+
# for an RDS Custom for Oracle DB instance.
|
15780
15594
|
#
|
15781
15595
|
# * It can be specified for a MySQL read replica only if the source is
|
15782
15596
|
# running MySQL 5.6 or later.
|
@@ -16219,7 +16033,7 @@ module Aws::RDS
|
|
16219
16033
|
# the DB instance.
|
16220
16034
|
#
|
16221
16035
|
# For more information, see [Using Amazon Performance Insights][1] in
|
16222
|
-
# the *Amazon RDS User Guide
|
16036
|
+
# the *Amazon RDS User Guide.*.
|
16223
16037
|
#
|
16224
16038
|
# This setting doesn't apply to RDS Custom.
|
16225
16039
|
#
|
@@ -16245,27 +16059,8 @@ module Aws::RDS
|
|
16245
16059
|
# @return [String]
|
16246
16060
|
#
|
16247
16061
|
# @!attribute [rw] performance_insights_retention_period
|
16248
|
-
# The
|
16249
|
-
#
|
16250
|
-
#
|
16251
|
-
# * 7
|
16252
|
-
#
|
16253
|
-
# * *month* * 31, where *month* is a number of months from 1-23
|
16254
|
-
#
|
16255
|
-
# * 731
|
16256
|
-
#
|
16257
|
-
# For example, the following values are valid:
|
16258
|
-
#
|
16259
|
-
# * 93 (3 months * 31)
|
16260
|
-
#
|
16261
|
-
# * 341 (11 months * 31)
|
16262
|
-
#
|
16263
|
-
# * 589 (19 months * 31)
|
16264
|
-
#
|
16265
|
-
# * 731
|
16266
|
-
#
|
16267
|
-
# If you specify a retention period such as 94, which isn't a valid
|
16268
|
-
# value, RDS issues an error.
|
16062
|
+
# The amount of time, in days, to retain Performance Insights data.
|
16063
|
+
# Valid values are 7 or 731 (2 years).
|
16269
16064
|
#
|
16270
16065
|
# This setting doesn't apply to RDS Custom.
|
16271
16066
|
# @return [Integer]
|
@@ -16754,11 +16549,11 @@ module Aws::RDS
|
|
16754
16549
|
# }
|
16755
16550
|
#
|
16756
16551
|
# @!attribute [rw] target_group_name
|
16757
|
-
# The name of the target group to
|
16552
|
+
# The name of the new target group to assign to the proxy.
|
16758
16553
|
# @return [String]
|
16759
16554
|
#
|
16760
16555
|
# @!attribute [rw] db_proxy_name
|
16761
|
-
# The name of the proxy.
|
16556
|
+
# The name of the new proxy to which to assign the target group.
|
16762
16557
|
# @return [String]
|
16763
16558
|
#
|
16764
16559
|
# @!attribute [rw] connection_pool_config
|
@@ -16817,7 +16612,7 @@ module Aws::RDS
|
|
16817
16612
|
# copy or restore a manual DB snapshot, set this value to `restore`.
|
16818
16613
|
#
|
16819
16614
|
# <note markdown="1"> To view the list of attributes available to modify, use the
|
16820
|
-
# DescribeDBSnapshotAttributes API
|
16615
|
+
# DescribeDBSnapshotAttributes API action.
|
16821
16616
|
#
|
16822
16617
|
# </note>
|
16823
16618
|
# @return [String]
|
@@ -19544,9 +19339,9 @@ module Aws::RDS
|
|
19544
19339
|
# @!attribute [rw] engine
|
19545
19340
|
# The name of the database engine to be used for this DB cluster.
|
19546
19341
|
#
|
19547
|
-
# Valid Values: `aurora` (for MySQL 5.6-compatible Aurora)
|
19342
|
+
# Valid Values: `aurora` (for MySQL 5.6-compatible Aurora),
|
19548
19343
|
# `aurora-mysql` (for MySQL 5.7-compatible and MySQL 8.0-compatible
|
19549
|
-
# Aurora)
|
19344
|
+
# Aurora), and `aurora-postgresql`
|
19550
19345
|
# @return [String]
|
19551
19346
|
#
|
19552
19347
|
# @!attribute [rw] engine_version
|
@@ -19565,10 +19360,20 @@ module Aws::RDS
|
|
19565
19360
|
# `aws rds describe-db-engine-versions --engine aurora-mysql --query
|
19566
19361
|
# "DBEngineVersions[].EngineVersion"`
|
19567
19362
|
#
|
19363
|
+
# To list all of the available engine versions for
|
19364
|
+
# `aurora-postgresql`, use the following command:
|
19365
|
+
#
|
19366
|
+
# `aws rds describe-db-engine-versions --engine aurora-postgresql
|
19367
|
+
# --query "DBEngineVersions[].EngineVersion"`
|
19368
|
+
#
|
19568
19369
|
# **Aurora MySQL**
|
19569
19370
|
#
|
19570
|
-
# Example: `5.6.10a`, `5.6.mysql_aurora.1.19.2`,
|
19571
|
-
# `5.7.mysql_aurora.2.
|
19371
|
+
# Example: `5.6.10a`, `5.6.mysql_aurora.1.19.2`, `5.7.12`,
|
19372
|
+
# `5.7.mysql_aurora.2.04.5`, `8.0.mysql_aurora.3.01.0`
|
19373
|
+
#
|
19374
|
+
# **Aurora PostgreSQL**
|
19375
|
+
#
|
19376
|
+
# Example: `9.6.3`, `10.7`
|
19572
19377
|
# @return [String]
|
19573
19378
|
#
|
19574
19379
|
# @!attribute [rw] port
|
@@ -20180,7 +19985,7 @@ module Aws::RDS
|
|
20180
19985
|
#
|
20181
19986
|
# For more information about exporting CloudWatch Logs for Amazon RDS,
|
20182
19987
|
# see [Publishing Database Logs to Amazon CloudWatch Logs][1] in the
|
20183
|
-
# *Amazon RDS User Guide
|
19988
|
+
# *Amazon RDS User Guide.*.
|
20184
19989
|
#
|
20185
19990
|
# For more information about exporting CloudWatch Logs for Amazon
|
20186
19991
|
# Aurora, see [Publishing Database Logs to Amazon CloudWatch Logs][2]
|
@@ -20699,7 +20504,7 @@ module Aws::RDS
|
|
20699
20504
|
#
|
20700
20505
|
# For more information about exporting CloudWatch Logs for Amazon RDS,
|
20701
20506
|
# see [Publishing Database Logs to Amazon CloudWatch Logs][1] in the
|
20702
|
-
# *Amazon RDS User Guide
|
20507
|
+
# *Amazon RDS User Guide.*.
|
20703
20508
|
#
|
20704
20509
|
# For more information about exporting CloudWatch Logs for Amazon
|
20705
20510
|
# Aurora, see [Publishing Database Logs to Amazon CloudWatch Logs][2]
|
@@ -21921,7 +21726,7 @@ module Aws::RDS
|
|
21921
21726
|
# the DB instance.
|
21922
21727
|
#
|
21923
21728
|
# For more information, see [Using Amazon Performance Insights][1] in
|
21924
|
-
# the *Amazon RDS User Guide
|
21729
|
+
# the *Amazon RDS User Guide.*.
|
21925
21730
|
#
|
21926
21731
|
#
|
21927
21732
|
#
|
@@ -21943,27 +21748,8 @@ module Aws::RDS
|
|
21943
21748
|
# @return [String]
|
21944
21749
|
#
|
21945
21750
|
# @!attribute [rw] performance_insights_retention_period
|
21946
|
-
# The
|
21947
|
-
#
|
21948
|
-
#
|
21949
|
-
# * 7
|
21950
|
-
#
|
21951
|
-
# * *month* * 31, where *month* is a number of months from 1-23
|
21952
|
-
#
|
21953
|
-
# * 731
|
21954
|
-
#
|
21955
|
-
# For example, the following values are valid:
|
21956
|
-
#
|
21957
|
-
# * 93 (3 months * 31)
|
21958
|
-
#
|
21959
|
-
# * 341 (11 months * 31)
|
21960
|
-
#
|
21961
|
-
# * 589 (19 months * 31)
|
21962
|
-
#
|
21963
|
-
# * 731
|
21964
|
-
#
|
21965
|
-
# If you specify a retention period such as 94, which isn't a valid
|
21966
|
-
# value, RDS issues an error.
|
21751
|
+
# The amount of time, in days, to retain Performance Insights data.
|
21752
|
+
# Valid values are 7 or 731 (2 years).
|
21967
21753
|
# @return [Integer]
|
21968
21754
|
#
|
21969
21755
|
# @!attribute [rw] enable_cloudwatch_logs_exports
|
@@ -23298,35 +23084,13 @@ module Aws::RDS
|
|
23298
23084
|
# @return [String]
|
23299
23085
|
#
|
23300
23086
|
# @!attribute [rw] pre_signed_url
|
23301
|
-
#
|
23302
|
-
#
|
23303
|
-
# `StartDBInstanceAutomatedBackupsReplication` operation to call in
|
23087
|
+
# A URL that contains a Signature Version 4 signed request for the
|
23088
|
+
# StartDBInstanceAutomatedBackupsReplication action to be called in
|
23304
23089
|
# the Amazon Web Services Region of the source DB instance. The
|
23305
23090
|
# presigned URL must be a valid request for the
|
23306
|
-
#
|
23307
|
-
#
|
23308
|
-
# instance.
|
23309
|
-
#
|
23310
|
-
# This setting applies only to Amazon Web Services GovCloud (US)
|
23311
|
-
# Regions. It's ignored in other Amazon Web Services Regions.
|
23312
|
-
#
|
23313
|
-
# To learn how to generate a Signature Version 4 signed request, see [
|
23314
|
-
# Authenticating Requests: Using Query Parameters (Amazon Web Services
|
23315
|
-
# Signature Version 4)][1] and [ Signature Version 4 Signing
|
23316
|
-
# Process][2].
|
23317
|
-
#
|
23318
|
-
# <note markdown="1"> If you are using an Amazon Web Services SDK tool or the CLI, you can
|
23319
|
-
# specify `SourceRegion` (or `--source-region` for the CLI) instead of
|
23320
|
-
# specifying `PreSignedUrl` manually. Specifying `SourceRegion`
|
23321
|
-
# autogenerates a presigned URL that is a valid request for the
|
23322
|
-
# operation that can run in the source Amazon Web Services Region.
|
23323
|
-
#
|
23324
|
-
# </note>
|
23325
|
-
#
|
23326
|
-
#
|
23327
|
-
#
|
23328
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html
|
23329
|
-
# [2]: https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html
|
23091
|
+
# StartDBInstanceAutomatedBackupsReplication API action that can be
|
23092
|
+
# executed in the Amazon Web Services Region that contains the source
|
23093
|
+
# DB instance.
|
23330
23094
|
# @return [String]
|
23331
23095
|
#
|
23332
23096
|
# @!attribute [rw] source_region
|
@@ -24092,9 +23856,7 @@ module Aws::RDS
|
|
24092
23856
|
# @return [String]
|
24093
23857
|
#
|
24094
23858
|
# @!attribute [rw] status
|
24095
|
-
# The
|
24096
|
-
#
|
24097
|
-
# Currently, the only valid status is `active`.
|
23859
|
+
# The status of the VPC security group.
|
24098
23860
|
# @return [String]
|
24099
23861
|
#
|
24100
23862
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/VpcSecurityGroupMembership AWS API Documentation
|