aws-sdk-rds 1.144.0 → 1.147.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +576 -243
- data/lib/aws-sdk-rds/client_api.rb +18 -0
- data/lib/aws-sdk-rds/db_cluster.rb +96 -37
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +25 -22
- data/lib/aws-sdk-rds/db_instance.rb +279 -56
- data/lib/aws-sdk-rds/db_snapshot.rb +49 -23
- data/lib/aws-sdk-rds/db_subnet_group.rb +22 -0
- data/lib/aws-sdk-rds/errors.rb +11 -0
- data/lib/aws-sdk-rds/resource.rb +155 -54
- data/lib/aws-sdk-rds/types.rb +609 -176
- data/lib/aws-sdk-rds.rb +1 -1
- metadata +2 -2
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -1116,26 +1116,31 @@ module Aws::RDS
|
|
1116
1116
|
# @return [String]
|
1117
1117
|
#
|
1118
1118
|
# @!attribute [rw] pre_signed_url
|
1119
|
-
#
|
1120
|
-
#
|
1121
|
-
#
|
1122
|
-
#
|
1123
|
-
# cluster snapshot
|
1124
|
-
#
|
1125
|
-
#
|
1126
|
-
#
|
1127
|
-
#
|
1128
|
-
#
|
1129
|
-
#
|
1130
|
-
#
|
1131
|
-
#
|
1132
|
-
#
|
1133
|
-
#
|
1134
|
-
#
|
1135
|
-
#
|
1136
|
-
#
|
1137
|
-
#
|
1138
|
-
#
|
1119
|
+
# When you are copying a DB cluster snapshot from one Amazon Web
|
1120
|
+
# Services GovCloud (US) Region to another, the URL that contains a
|
1121
|
+
# Signature Version 4 signed request for the `CopyDBClusterSnapshot`
|
1122
|
+
# API operation in the Amazon Web Services Region that contains the
|
1123
|
+
# source DB cluster snapshot to copy. Use the `PreSignedUrl` parameter
|
1124
|
+
# when copying an encrypted DB cluster snapshot from another Amazon
|
1125
|
+
# Web Services Region. Don't specify `PreSignedUrl` when copying an
|
1126
|
+
# encrypted DB cluster snapshot in the same Amazon Web Services
|
1127
|
+
# Region.
|
1128
|
+
#
|
1129
|
+
# This setting applies only to Amazon Web Services GovCloud (US)
|
1130
|
+
# Regions. It's ignored in other Amazon Web Services Regions.
|
1131
|
+
#
|
1132
|
+
# The presigned URL must be a valid request for the
|
1133
|
+
# `CopyDBClusterSnapshot` API operation that can run in the source
|
1134
|
+
# Amazon Web Services Region that contains the encrypted DB cluster
|
1135
|
+
# snapshot to copy. The presigned URL request must contain the
|
1136
|
+
# following parameter values:
|
1137
|
+
#
|
1138
|
+
# * `KmsKeyId` - The KMS key identifier for the KMS key to use to
|
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.
|
1139
1144
|
#
|
1140
1145
|
# * `DestinationRegion` - The name of the Amazon Web Services Region
|
1141
1146
|
# that the DB cluster snapshot is to be created in.
|
@@ -1157,9 +1162,8 @@ module Aws::RDS
|
|
1157
1162
|
# <note markdown="1"> If you are using an Amazon Web Services SDK tool or the CLI, you can
|
1158
1163
|
# specify `SourceRegion` (or `--source-region` for the CLI) instead of
|
1159
1164
|
# specifying `PreSignedUrl` manually. Specifying `SourceRegion`
|
1160
|
-
# autogenerates a
|
1161
|
-
# operation that can
|
1162
|
-
# Region.
|
1165
|
+
# autogenerates a presigned URL that is a valid request for the
|
1166
|
+
# operation that can run in the source Amazon Web Services Region.
|
1163
1167
|
#
|
1164
1168
|
# </note>
|
1165
1169
|
#
|
@@ -1340,9 +1344,7 @@ module Aws::RDS
|
|
1340
1344
|
# must be the Amazon Resource Name (ARN) of the shared DB snapshot.
|
1341
1345
|
#
|
1342
1346
|
# If you are copying an encrypted snapshot this parameter must be in
|
1343
|
-
# the ARN format for the source Amazon Web Services Region
|
1344
|
-
# match the `SourceDBSnapshotIdentifier` in the `PreSignedUrl`
|
1345
|
-
# parameter.
|
1347
|
+
# the ARN format for the source Amazon Web Services Region.
|
1346
1348
|
#
|
1347
1349
|
# Constraints:
|
1348
1350
|
#
|
@@ -1413,40 +1415,46 @@ module Aws::RDS
|
|
1413
1415
|
# @return [Boolean]
|
1414
1416
|
#
|
1415
1417
|
# @!attribute [rw] pre_signed_url
|
1416
|
-
#
|
1417
|
-
#
|
1418
|
-
#
|
1418
|
+
# When you are copying a snapshot from one Amazon Web Services
|
1419
|
+
# GovCloud (US) Region to another, the URL that contains a Signature
|
1420
|
+
# Version 4 signed request for the `CopyDBSnapshot` API operation in
|
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.
|
1419
1426
|
#
|
1420
1427
|
# You must specify this parameter when you copy an encrypted DB
|
1421
1428
|
# snapshot from another Amazon Web Services Region by using the Amazon
|
1422
1429
|
# RDS API. Don't specify `PreSignedUrl` when you are copying an
|
1423
1430
|
# encrypted DB snapshot in the same Amazon Web Services Region.
|
1424
1431
|
#
|
1425
|
-
# The presigned URL must be a valid request for the
|
1426
|
-
# API
|
1427
|
-
# Region that contains the encrypted DB
|
1428
|
-
# presigned URL request must contain the
|
1432
|
+
# The presigned URL must be a valid request for the
|
1433
|
+
# `CopyDBClusterSnapshot` API operation that can run in the source
|
1434
|
+
# Amazon Web Services Region that contains the encrypted DB cluster
|
1435
|
+
# snapshot to copy. The presigned URL request must contain the
|
1436
|
+
# following parameter values:
|
1429
1437
|
#
|
1430
1438
|
# * `DestinationRegion` - The Amazon Web Services Region that the
|
1431
1439
|
# encrypted DB snapshot is copied to. This Amazon Web Services
|
1432
|
-
# Region is the same one where the `CopyDBSnapshot`
|
1433
|
-
# that contains this presigned URL.
|
1440
|
+
# Region is the same one where the `CopyDBSnapshot` operation is
|
1441
|
+
# called that contains this presigned URL.
|
1434
1442
|
#
|
1435
1443
|
# For example, if you copy an encrypted DB snapshot from the
|
1436
1444
|
# us-west-2 Amazon Web Services Region to the us-east-1 Amazon Web
|
1437
|
-
# Services Region, then you call the `CopyDBSnapshot`
|
1438
|
-
# us-east-1 Amazon Web Services Region and provide a presigned
|
1439
|
-
# that contains a call to the `CopyDBSnapshot`
|
1445
|
+
# Services Region, then you call the `CopyDBSnapshot` operation in
|
1446
|
+
# the us-east-1 Amazon Web Services Region and provide a presigned
|
1447
|
+
# URL that contains a call to the `CopyDBSnapshot` operation in the
|
1440
1448
|
# us-west-2 Amazon Web Services Region. For this example, the
|
1441
1449
|
# `DestinationRegion` in the presigned URL must be set to the
|
1442
1450
|
# us-east-1 Amazon Web Services Region.
|
1443
1451
|
#
|
1444
|
-
# * `KmsKeyId` - The
|
1445
|
-
#
|
1446
|
-
#
|
1447
|
-
#
|
1448
|
-
#
|
1449
|
-
#
|
1452
|
+
# * `KmsKeyId` - The KMS key identifier for the KMS key to use to
|
1453
|
+
# encrypt the copy of the DB snapshot in the destination Amazon Web
|
1454
|
+
# Services Region. This is the same identifier for both the
|
1455
|
+
# `CopyDBSnapshot` operation that is called in the destination
|
1456
|
+
# Amazon Web Services Region, and the operation contained in the
|
1457
|
+
# presigned URL.
|
1450
1458
|
#
|
1451
1459
|
# * `SourceDBSnapshotIdentifier` - The DB snapshot identifier for the
|
1452
1460
|
# encrypted snapshot to be copied. This identifier must be in the
|
@@ -1464,9 +1472,8 @@ module Aws::RDS
|
|
1464
1472
|
# <note markdown="1"> If you are using an Amazon Web Services SDK tool or the CLI, you can
|
1465
1473
|
# specify `SourceRegion` (or `--source-region` for the CLI) instead of
|
1466
1474
|
# specifying `PreSignedUrl` manually. Specifying `SourceRegion`
|
1467
|
-
# autogenerates a
|
1468
|
-
# operation that can
|
1469
|
-
# Region.
|
1475
|
+
# autogenerates a presigned URL that is a valid request for the
|
1476
|
+
# operation that can run in the source Amazon Web Services Region.
|
1470
1477
|
#
|
1471
1478
|
# </note>
|
1472
1479
|
#
|
@@ -2199,25 +2206,26 @@ module Aws::RDS
|
|
2199
2206
|
# @return [String]
|
2200
2207
|
#
|
2201
2208
|
# @!attribute [rw] pre_signed_url
|
2202
|
-
#
|
2203
|
-
#
|
2204
|
-
#
|
2205
|
-
#
|
2206
|
-
# from
|
2207
|
-
#
|
2208
|
-
#
|
2209
|
-
#
|
2210
|
-
#
|
2211
|
-
#
|
2212
|
-
#
|
2209
|
+
# When you are replicating a DB cluster from one Amazon Web Services
|
2210
|
+
# GovCloud (US) Region to another, an URL that contains a Signature
|
2211
|
+
# Version 4 signed request for the `CreateDBCluster` operation to be
|
2212
|
+
# called in the source Amazon Web Services Region where the DB cluster
|
2213
|
+
# is replicated from. Specify `PreSignedUrl` only when you are
|
2214
|
+
# performing cross-Region replication from an encrypted DB cluster.
|
2215
|
+
#
|
2216
|
+
# The presigned URL must be a valid request for the `CreateDBCluster`
|
2217
|
+
# API operation that can run in the source Amazon Web Services Region
|
2218
|
+
# that contains the encrypted DB cluster to copy.
|
2219
|
+
#
|
2220
|
+
# The presigned URL request must contain the following parameter
|
2213
2221
|
# values:
|
2214
2222
|
#
|
2215
|
-
# * `KmsKeyId` - The
|
2216
|
-
#
|
2217
|
-
#
|
2218
|
-
#
|
2219
|
-
#
|
2220
|
-
#
|
2223
|
+
# * `KmsKeyId` - The KMS key identifier for the KMS key to use to
|
2224
|
+
# encrypt the copy of the DB cluster in the destination Amazon Web
|
2225
|
+
# Services Region. This should refer to the same KMS key for both
|
2226
|
+
# the `CreateDBCluster` operation that is called in the destination
|
2227
|
+
# Amazon Web Services Region, and the operation contained in the
|
2228
|
+
# presigned URL.
|
2221
2229
|
#
|
2222
2230
|
# * `DestinationRegion` - The name of the Amazon Web Services Region
|
2223
2231
|
# that Aurora read replica will be created in.
|
@@ -2238,9 +2246,8 @@ module Aws::RDS
|
|
2238
2246
|
# <note markdown="1"> If you are using an Amazon Web Services SDK tool or the CLI, you can
|
2239
2247
|
# specify `SourceRegion` (or `--source-region` for the CLI) instead of
|
2240
2248
|
# specifying `PreSignedUrl` manually. Specifying `SourceRegion`
|
2241
|
-
# autogenerates a
|
2242
|
-
# operation that can
|
2243
|
-
# Region.
|
2249
|
+
# autogenerates a presigned URL that is a valid request for the
|
2250
|
+
# operation that can run in the source Amazon Web Services Region.
|
2244
2251
|
#
|
2245
2252
|
# </note>
|
2246
2253
|
#
|
@@ -2258,7 +2265,7 @@ module Aws::RDS
|
|
2258
2265
|
# accounts. By default, mapping isn't enabled.
|
2259
2266
|
#
|
2260
2267
|
# For more information, see [ IAM Database Authentication][1] in the
|
2261
|
-
# *Amazon Aurora User Guide
|
2268
|
+
# *Amazon Aurora User Guide*.
|
2262
2269
|
#
|
2263
2270
|
# Valid for: Aurora DB clusters only
|
2264
2271
|
#
|
@@ -2335,6 +2342,9 @@ module Aws::RDS
|
|
2335
2342
|
# The `multimaster` engine mode only applies for DB clusters created
|
2336
2343
|
# with Aurora MySQL version 5.6.10a.
|
2337
2344
|
#
|
2345
|
+
# The `serverless` engine mode only applies for Aurora Serverless v1
|
2346
|
+
# DB clusters.
|
2347
|
+
#
|
2338
2348
|
# For Aurora PostgreSQL, the `global` engine mode isn't required, and
|
2339
2349
|
# both the `parallelquery` and the `multimaster` engine modes
|
2340
2350
|
# currently aren't supported.
|
@@ -2343,22 +2353,25 @@ module Aws::RDS
|
|
2343
2353
|
# information, see the following sections in the *Amazon Aurora User
|
2344
2354
|
# Guide*\:
|
2345
2355
|
#
|
2346
|
-
# * [
|
2356
|
+
# * [Limitations of Aurora Serverless v1][1]
|
2347
2357
|
#
|
2348
|
-
# * [
|
2358
|
+
# * [Requirements for Aurora Serverless v2][2]
|
2349
2359
|
#
|
2350
|
-
# * [
|
2360
|
+
# * [Limitations of Parallel Query][3]
|
2351
2361
|
#
|
2352
|
-
# * [
|
2362
|
+
# * [Limitations of Aurora Global Databases][4]
|
2363
|
+
#
|
2364
|
+
# * [Limitations of Multi-Master Clusters][5]
|
2353
2365
|
#
|
2354
2366
|
# Valid for: Aurora DB clusters only
|
2355
2367
|
#
|
2356
2368
|
#
|
2357
2369
|
#
|
2358
2370
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless.html#aurora-serverless.limitations
|
2359
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-
|
2360
|
-
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-
|
2361
|
-
# [4]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-
|
2371
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.requirements.html
|
2372
|
+
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-mysql-parallel-query.html#aurora-mysql-parallel-query-limitations
|
2373
|
+
# [4]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-global-database.html#aurora-global-database.limitations
|
2374
|
+
# [5]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-multi-master.html#aurora-multi-master-limitations
|
2362
2375
|
# @return [String]
|
2363
2376
|
#
|
2364
2377
|
# @!attribute [rw] scaling_configuration
|
@@ -2622,8 +2635,27 @@ module Aws::RDS
|
|
2622
2635
|
# @return [String]
|
2623
2636
|
#
|
2624
2637
|
# @!attribute [rw] performance_insights_retention_period
|
2625
|
-
# The
|
2626
|
-
#
|
2638
|
+
# The number of days to retain Performance Insights data. The default
|
2639
|
+
# is 7 days. The following values are valid:
|
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.
|
2627
2659
|
#
|
2628
2660
|
# Valid for: Multi-AZ DB clusters only
|
2629
2661
|
# @return [Integer]
|
@@ -2989,6 +3021,7 @@ module Aws::RDS
|
|
2989
3021
|
# enable_customer_owned_ip: false,
|
2990
3022
|
# custom_iam_instance_profile: "String",
|
2991
3023
|
# backup_target: "String",
|
3024
|
+
# network_type: "String",
|
2992
3025
|
# }
|
2993
3026
|
#
|
2994
3027
|
# @!attribute [rw] db_name
|
@@ -3228,14 +3261,16 @@ module Aws::RDS
|
|
3228
3261
|
#
|
3229
3262
|
# @!attribute [rw] db_instance_class
|
3230
3263
|
# The compute and memory capacity of the DB instance, for example
|
3231
|
-
# db.
|
3264
|
+
# db.m5.large. Not all DB instance classes are available in all Amazon
|
3232
3265
|
# Web Services Regions, or for all database engines. For the full list
|
3233
3266
|
# of DB instance classes, and availability for your engine, see [DB
|
3234
|
-
#
|
3267
|
+
# instance classes][1] in the *Amazon RDS User Guide* or [Aurora DB
|
3268
|
+
# instance classes][2] in the *Amazon Aurora User Guide*.
|
3235
3269
|
#
|
3236
3270
|
#
|
3237
3271
|
#
|
3238
3272
|
# [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
|
3239
3274
|
# @return [String]
|
3240
3275
|
#
|
3241
3276
|
# @!attribute [rw] engine
|
@@ -3338,7 +3373,9 @@ module Aws::RDS
|
|
3338
3373
|
# @!attribute [rw] db_security_groups
|
3339
3374
|
# A list of DB security groups to associate with this DB instance.
|
3340
3375
|
#
|
3341
|
-
#
|
3376
|
+
# This setting applies to the legacy EC2-Classic platform, which is no
|
3377
|
+
# longer used to create new DB instances. Use the
|
3378
|
+
# `VpcSecurityGroupIds` setting instead.
|
3342
3379
|
# @return [Array<String>]
|
3343
3380
|
#
|
3344
3381
|
# @!attribute [rw] vpc_security_group_ids
|
@@ -3376,19 +3413,9 @@ module Aws::RDS
|
|
3376
3413
|
# Zone must be in the same Amazon Web Services Region as the current
|
3377
3414
|
# endpoint.
|
3378
3415
|
#
|
3379
|
-
# <note markdown="1"> If you're creating a DB instance in an RDS on VMware environment,
|
3380
|
-
# specify the identifier of the custom Availability Zone to create the
|
3381
|
-
# DB instance in.
|
3382
|
-
#
|
3383
|
-
# For more information about RDS on VMware, see the [ RDS on VMware
|
3384
|
-
# User Guide.][2]
|
3385
|
-
#
|
3386
|
-
# </note>
|
3387
|
-
#
|
3388
3416
|
#
|
3389
3417
|
#
|
3390
3418
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html
|
3391
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/RDSonVMwareUserGuide/rds-on-vmware.html
|
3392
3419
|
# @return [String]
|
3393
3420
|
#
|
3394
3421
|
# @!attribute [rw] db_subnet_group_name
|
@@ -3454,7 +3481,7 @@ module Aws::RDS
|
|
3454
3481
|
#
|
3455
3482
|
# * Can't be set to 0 if the DB instance is a source to read replicas
|
3456
3483
|
#
|
3457
|
-
# * Can't be set to 0
|
3484
|
+
# * Can't be set to 0 for an RDS Custom for Oracle DB instance
|
3458
3485
|
# @return [Integer]
|
3459
3486
|
#
|
3460
3487
|
# @!attribute [rw] preferred_backup_window
|
@@ -3540,13 +3567,18 @@ module Aws::RDS
|
|
3540
3567
|
# DB instance is a Multi-AZ deployment.
|
3541
3568
|
#
|
3542
3569
|
# 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.
|
3543
3575
|
# @return [Boolean]
|
3544
3576
|
#
|
3545
3577
|
# @!attribute [rw] engine_version
|
3546
3578
|
# The version number of the database engine to use.
|
3547
3579
|
#
|
3548
3580
|
# For a list of valid engine versions, use the
|
3549
|
-
# `DescribeDBEngineVersions`
|
3581
|
+
# `DescribeDBEngineVersions` operation.
|
3550
3582
|
#
|
3551
3583
|
# The following are the database engines and links to information
|
3552
3584
|
# about the major and minor versions that are available with Amazon
|
@@ -3599,7 +3631,7 @@ module Aws::RDS
|
|
3599
3631
|
#
|
3600
3632
|
#
|
3601
3633
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-creating.html#custom-creating.create
|
3602
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-reqs-limits.html
|
3634
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-reqs-limits-MS.html
|
3603
3635
|
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_MariaDB.html#MariaDB.Concepts.VersionMgmt
|
3604
3636
|
# [4]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.VersionSupport
|
3605
3637
|
# [5]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_MySQL.html#MySQL.Concepts.VersionMgmt
|
@@ -3623,6 +3655,10 @@ module Aws::RDS
|
|
3623
3655
|
# `general-public-license`
|
3624
3656
|
#
|
3625
3657
|
# This setting doesn't apply to RDS Custom.
|
3658
|
+
#
|
3659
|
+
# **Amazon Aurora**
|
3660
|
+
#
|
3661
|
+
# Not applicable.
|
3626
3662
|
# @return [String]
|
3627
3663
|
#
|
3628
3664
|
# @!attribute [rw] iops
|
@@ -3636,6 +3672,10 @@ module Aws::RDS
|
|
3636
3672
|
# amount for the DB instance. For SQL Server DB instances, must be a
|
3637
3673
|
# multiple between 1 and 50 of the storage amount for the DB instance.
|
3638
3674
|
#
|
3675
|
+
# **Amazon Aurora**
|
3676
|
+
#
|
3677
|
+
# Not applicable. Storage is managed by the DB cluster.
|
3678
|
+
#
|
3639
3679
|
#
|
3640
3680
|
#
|
3641
3681
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html#USER_PIOPS
|
@@ -3651,6 +3691,10 @@ module Aws::RDS
|
|
3651
3691
|
# associated with a DB instance.
|
3652
3692
|
#
|
3653
3693
|
# This setting doesn't apply to RDS Custom.
|
3694
|
+
#
|
3695
|
+
# **Amazon Aurora**
|
3696
|
+
#
|
3697
|
+
# Not applicable.
|
3654
3698
|
# @return [String]
|
3655
3699
|
#
|
3656
3700
|
# @!attribute [rw] character_set_name
|
@@ -3728,6 +3772,10 @@ module Aws::RDS
|
|
3728
3772
|
# parameter.
|
3729
3773
|
#
|
3730
3774
|
# 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.
|
3731
3779
|
# @return [String]
|
3732
3780
|
#
|
3733
3781
|
# @!attribute [rw] tde_credential_arn
|
@@ -3735,6 +3783,10 @@ module Aws::RDS
|
|
3735
3783
|
# TDE encryption.
|
3736
3784
|
#
|
3737
3785
|
# This setting doesn't apply to RDS Custom.
|
3786
|
+
#
|
3787
|
+
# **Amazon Aurora**
|
3788
|
+
#
|
3789
|
+
# Not applicable.
|
3738
3790
|
# @return [String]
|
3739
3791
|
#
|
3740
3792
|
# @!attribute [rw] tde_credential_password
|
@@ -3798,6 +3850,10 @@ module Aws::RDS
|
|
3798
3850
|
#
|
3799
3851
|
# This setting doesn't apply to RDS Custom.
|
3800
3852
|
#
|
3853
|
+
# **Amazon Aurora**
|
3854
|
+
#
|
3855
|
+
# Not applicable. The domain is managed by the DB cluster.
|
3856
|
+
#
|
3801
3857
|
#
|
3802
3858
|
#
|
3803
3859
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/kerberos-authentication.html
|
@@ -3849,6 +3905,10 @@ module Aws::RDS
|
|
3849
3905
|
# the Directory Service.
|
3850
3906
|
#
|
3851
3907
|
# This setting doesn't apply to RDS Custom.
|
3908
|
+
#
|
3909
|
+
# **Amazon Aurora**
|
3910
|
+
#
|
3911
|
+
# Not applicable. The domain is managed by the DB cluster.
|
3852
3912
|
# @return [String]
|
3853
3913
|
#
|
3854
3914
|
# @!attribute [rw] promotion_tier
|
@@ -3882,13 +3942,16 @@ module Aws::RDS
|
|
3882
3942
|
# Services Identity and Access Management (IAM) accounts to database
|
3883
3943
|
# accounts. By default, mapping isn't enabled.
|
3884
3944
|
#
|
3885
|
-
# This setting doesn't apply to RDS Custom or Amazon Aurora. In
|
3886
|
-
# Aurora, mapping Amazon Web Services IAM accounts to database
|
3887
|
-
# accounts is managed by the DB cluster.
|
3888
|
-
#
|
3889
3945
|
# For more information, see [ IAM Database Authentication for MySQL
|
3890
3946
|
# and PostgreSQL][1] in the *Amazon RDS User Guide*.
|
3891
3947
|
#
|
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
|
+
#
|
3892
3955
|
#
|
3893
3956
|
#
|
3894
3957
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html
|
@@ -3923,8 +3986,27 @@ module Aws::RDS
|
|
3923
3986
|
# @return [String]
|
3924
3987
|
#
|
3925
3988
|
# @!attribute [rw] performance_insights_retention_period
|
3926
|
-
# The
|
3927
|
-
#
|
3989
|
+
# The number of days to retain Performance Insights data. The default
|
3990
|
+
# is 7 days. The following values are valid:
|
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.
|
3928
4010
|
#
|
3929
4011
|
# This setting doesn't apply to RDS Custom.
|
3930
4012
|
# @return [Integer]
|
@@ -3975,6 +4057,10 @@ module Aws::RDS
|
|
3975
4057
|
# DB instance class of the DB instance.
|
3976
4058
|
#
|
3977
4059
|
# This setting doesn't apply to RDS Custom.
|
4060
|
+
#
|
4061
|
+
# **Amazon Aurora**
|
4062
|
+
#
|
4063
|
+
# Not applicable.
|
3978
4064
|
# @return [Array<Types::ProcessorFeature>]
|
3979
4065
|
#
|
3980
4066
|
# @!attribute [rw] deletion_protection
|
@@ -4005,6 +4091,10 @@ module Aws::RDS
|
|
4005
4091
|
#
|
4006
4092
|
# This setting doesn't apply to RDS Custom.
|
4007
4093
|
#
|
4094
|
+
# **Amazon Aurora**
|
4095
|
+
#
|
4096
|
+
# Not applicable. Storage is managed by the DB cluster.
|
4097
|
+
#
|
4008
4098
|
#
|
4009
4099
|
#
|
4010
4100
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.Autoscaling
|
@@ -4070,6 +4160,27 @@ module Aws::RDS
|
|
4070
4160
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
4071
4161
|
# @return [String]
|
4072
4162
|
#
|
4163
|
+
# @!attribute [rw] network_type
|
4164
|
+
# The network type of the DB instance.
|
4165
|
+
#
|
4166
|
+
# Valid values:
|
4167
|
+
#
|
4168
|
+
# * `IPV4`
|
4169
|
+
#
|
4170
|
+
# * `DUAL`
|
4171
|
+
#
|
4172
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
4173
|
+
# the DB instance. A `DBSubnetGroup` can support only the IPv4
|
4174
|
+
# protocol or the IPv4 and the IPv6 protocols (`DUAL`).
|
4175
|
+
#
|
4176
|
+
# For more information, see [ Working with a DB instance in a VPC][1]
|
4177
|
+
# in the *Amazon RDS User Guide.*
|
4178
|
+
#
|
4179
|
+
#
|
4180
|
+
#
|
4181
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
4182
|
+
# @return [String]
|
4183
|
+
#
|
4073
4184
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstanceMessage AWS API Documentation
|
4074
4185
|
#
|
4075
4186
|
class CreateDBInstanceMessage < Struct.new(
|
@@ -4122,7 +4233,8 @@ module Aws::RDS
|
|
4122
4233
|
:max_allocated_storage,
|
4123
4234
|
:enable_customer_owned_ip,
|
4124
4235
|
:custom_iam_instance_profile,
|
4125
|
-
:backup_target
|
4236
|
+
:backup_target,
|
4237
|
+
:network_type)
|
4126
4238
|
SENSITIVE = []
|
4127
4239
|
include Aws::Structure
|
4128
4240
|
end
|
@@ -4174,6 +4286,7 @@ module Aws::RDS
|
|
4174
4286
|
# replica_mode: "open-read-only", # accepts open-read-only, mounted
|
4175
4287
|
# max_allocated_storage: 1,
|
4176
4288
|
# custom_iam_instance_profile: "String",
|
4289
|
+
# network_type: "String",
|
4177
4290
|
# source_region: "String",
|
4178
4291
|
# }
|
4179
4292
|
#
|
@@ -4307,7 +4420,8 @@ module Aws::RDS
|
|
4307
4420
|
# specified DB engine for a cross-Region read replica.
|
4308
4421
|
#
|
4309
4422
|
# Specifying a parameter group for this operation is only supported
|
4310
|
-
# for Oracle DB instances. It isn't supported for RDS
|
4423
|
+
# for MySQL and Oracle DB instances. It isn't supported for RDS
|
4424
|
+
# Custom.
|
4311
4425
|
#
|
4312
4426
|
# Constraints:
|
4313
4427
|
#
|
@@ -4458,9 +4572,16 @@ module Aws::RDS
|
|
4458
4572
|
# @return [String]
|
4459
4573
|
#
|
4460
4574
|
# @!attribute [rw] pre_signed_url
|
4461
|
-
#
|
4462
|
-
#
|
4463
|
-
# Services Region
|
4575
|
+
# When you are creating a read replica from one Amazon Web Services
|
4576
|
+
# GovCloud (US) Region to another or from one China Amazon Web
|
4577
|
+
# Services Region to another, the URL that contains a Signature
|
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.
|
4464
4585
|
#
|
4465
4586
|
# You must specify this parameter when you create an encrypted read
|
4466
4587
|
# replica from another Amazon Web Services Region by using the Amazon
|
@@ -4468,7 +4589,7 @@ module Aws::RDS
|
|
4468
4589
|
# encrypted read replica in the same Amazon Web Services Region.
|
4469
4590
|
#
|
4470
4591
|
# The presigned URL must be a valid request for the
|
4471
|
-
# `CreateDBInstanceReadReplica` API
|
4592
|
+
# `CreateDBInstanceReadReplica` API operation that can run in the
|
4472
4593
|
# source Amazon Web Services Region that contains the encrypted source
|
4473
4594
|
# DB instance. The presigned URL request must contain the following
|
4474
4595
|
# parameter values:
|
@@ -4476,24 +4597,24 @@ module Aws::RDS
|
|
4476
4597
|
# * `DestinationRegion` - The Amazon Web Services Region that the
|
4477
4598
|
# encrypted read replica is created in. This Amazon Web Services
|
4478
4599
|
# Region is the same one where the `CreateDBInstanceReadReplica`
|
4479
|
-
#
|
4600
|
+
# operation is called that contains this presigned URL.
|
4480
4601
|
#
|
4481
4602
|
# For example, if you create an encrypted DB instance in the
|
4482
4603
|
# us-west-1 Amazon Web Services Region, from a source DB instance in
|
4483
4604
|
# the us-east-2 Amazon Web Services Region, then you call the
|
4484
|
-
# `CreateDBInstanceReadReplica`
|
4485
|
-
# Services Region and provide a presigned URL that contains a
|
4486
|
-
# to the `CreateDBInstanceReadReplica`
|
4487
|
-
# Amazon Web Services Region. For this example, the
|
4605
|
+
# `CreateDBInstanceReadReplica` operation in the us-east-1 Amazon
|
4606
|
+
# Web Services Region and provide a presigned URL that contains a
|
4607
|
+
# call to the `CreateDBInstanceReadReplica` operation in the
|
4608
|
+
# us-west-2 Amazon Web Services Region. For this example, the
|
4488
4609
|
# `DestinationRegion` in the presigned URL must be set to the
|
4489
4610
|
# us-east-1 Amazon Web Services Region.
|
4490
4611
|
#
|
4491
|
-
# * `KmsKeyId` - The
|
4492
|
-
#
|
4493
|
-
#
|
4494
|
-
# `CreateDBInstanceReadReplica`
|
4495
|
-
# destination Amazon Web Services Region, and the
|
4496
|
-
# in the presigned URL.
|
4612
|
+
# * `KmsKeyId` - The KMS key identifier for the key to use to encrypt
|
4613
|
+
# the read replica in the destination Amazon Web Services Region.
|
4614
|
+
# This is the same identifier for both the
|
4615
|
+
# `CreateDBInstanceReadReplica` operation that is called in the
|
4616
|
+
# destination Amazon Web Services Region, and the operation
|
4617
|
+
# contained in the presigned URL.
|
4497
4618
|
#
|
4498
4619
|
# * `SourceDBInstanceIdentifier` - The DB instance identifier for the
|
4499
4620
|
# encrypted DB instance to be replicated. This identifier must be in
|
@@ -4513,11 +4634,10 @@ module Aws::RDS
|
|
4513
4634
|
# specify `SourceRegion` (or `--source-region` for the CLI) instead of
|
4514
4635
|
# specifying `PreSignedUrl` manually. Specifying `SourceRegion`
|
4515
4636
|
# autogenerates a presigned URL that is a valid request for the
|
4516
|
-
# operation that can
|
4517
|
-
# Region.
|
4637
|
+
# operation that can run in the source Amazon Web Services Region.
|
4518
4638
|
#
|
4519
|
-
# `SourceRegion` isn't supported for SQL Server, because
|
4520
|
-
#
|
4639
|
+
# `SourceRegion` isn't supported for SQL Server, because Amazon RDS
|
4640
|
+
# for SQL Server doesn't support cross-Region read replicas.
|
4521
4641
|
#
|
4522
4642
|
# </note>
|
4523
4643
|
#
|
@@ -4576,8 +4696,27 @@ module Aws::RDS
|
|
4576
4696
|
# @return [String]
|
4577
4697
|
#
|
4578
4698
|
# @!attribute [rw] performance_insights_retention_period
|
4579
|
-
# The
|
4580
|
-
#
|
4699
|
+
# The number of days to retain Performance Insights data. The default
|
4700
|
+
# is 7 days. The following values are valid:
|
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.
|
4581
4720
|
#
|
4582
4721
|
# This setting doesn't apply to RDS Custom.
|
4583
4722
|
# @return [Integer]
|
@@ -4706,6 +4845,27 @@ module Aws::RDS
|
|
4706
4845
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-setup-orcl.html#custom-setup-orcl.iam-vpc
|
4707
4846
|
# @return [String]
|
4708
4847
|
#
|
4848
|
+
# @!attribute [rw] network_type
|
4849
|
+
# The network type of the DB instance.
|
4850
|
+
#
|
4851
|
+
# Valid values:
|
4852
|
+
#
|
4853
|
+
# * `IPV4`
|
4854
|
+
#
|
4855
|
+
# * `DUAL`
|
4856
|
+
#
|
4857
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
4858
|
+
# read replica. A `DBSubnetGroup` can support only the IPv4 protocol
|
4859
|
+
# or the IPv4 and the IPv6 protocols (`DUAL`).
|
4860
|
+
#
|
4861
|
+
# For more information, see [ Working with a DB instance in a VPC][1]
|
4862
|
+
# in the *Amazon RDS User Guide.*
|
4863
|
+
#
|
4864
|
+
#
|
4865
|
+
#
|
4866
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
4867
|
+
# @return [String]
|
4868
|
+
#
|
4709
4869
|
# @!attribute [rw] source_region
|
4710
4870
|
# The source region of the snapshot. This is only needed when the
|
4711
4871
|
# shapshot is encrypted and in a different region.
|
@@ -4747,6 +4907,7 @@ module Aws::RDS
|
|
4747
4907
|
:replica_mode,
|
4748
4908
|
:max_allocated_storage,
|
4749
4909
|
:custom_iam_instance_profile,
|
4910
|
+
:network_type,
|
4750
4911
|
:source_region)
|
4751
4912
|
SENSITIVE = []
|
4752
4913
|
include Aws::Structure
|
@@ -5486,7 +5647,7 @@ module Aws::RDS
|
|
5486
5647
|
# @return [Boolean]
|
5487
5648
|
#
|
5488
5649
|
# @!attribute [rw] database_name
|
5489
|
-
# The name for your database of up to 64
|
5650
|
+
# The name for your database of up to 64 alphanumeric characters. If
|
5490
5651
|
# you do not provide a name, Amazon Aurora will not create a database
|
5491
5652
|
# in the global database cluster you are creating.
|
5492
5653
|
# @return [String]
|
@@ -6097,8 +6258,24 @@ module Aws::RDS
|
|
6097
6258
|
# @return [String]
|
6098
6259
|
#
|
6099
6260
|
# @!attribute [rw] performance_insights_retention_period
|
6100
|
-
# The
|
6101
|
-
#
|
6261
|
+
# The number of days to retain Performance Insights data. The default
|
6262
|
+
# is 7 days. The following values are valid:
|
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
|
6102
6279
|
#
|
6103
6280
|
# This setting is only for non-Aurora Multi-AZ DB clusters.
|
6104
6281
|
# @return [Integer]
|
@@ -7510,8 +7687,24 @@ module Aws::RDS
|
|
7510
7687
|
# @return [String]
|
7511
7688
|
#
|
7512
7689
|
# @!attribute [rw] performance_insights_retention_period
|
7513
|
-
# The
|
7514
|
-
#
|
7690
|
+
# The number of days to retain Performance Insights data. The default
|
7691
|
+
# is 7 days. The following values are valid:
|
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
|
7515
7708
|
# @return [Integer]
|
7516
7709
|
#
|
7517
7710
|
# @!attribute [rw] enabled_cloudwatch_logs_exports
|
@@ -7664,6 +7857,29 @@ module Aws::RDS
|
|
7664
7857
|
# Amazon Web Services Outposts or the Amazon Web Services Region.
|
7665
7858
|
# @return [String]
|
7666
7859
|
#
|
7860
|
+
# @!attribute [rw] network_type
|
7861
|
+
# The network type of the DB instance.
|
7862
|
+
#
|
7863
|
+
# Valid values:
|
7864
|
+
#
|
7865
|
+
# * `IPV4`
|
7866
|
+
#
|
7867
|
+
# * `DUAL`
|
7868
|
+
#
|
7869
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
7870
|
+
# the DB instance. A `DBSubnetGroup` can support only the IPv4
|
7871
|
+
# protocol or the IPv4 and the IPv6 protocols (`DUAL`).
|
7872
|
+
#
|
7873
|
+
# For more information, see [ Working with a DB instance in a VPC][1]
|
7874
|
+
# in the *Amazon RDS User Guide* and [ Working with a DB instance in a
|
7875
|
+
# VPC][2] in the *Amazon Aurora User Guide.*
|
7876
|
+
#
|
7877
|
+
#
|
7878
|
+
#
|
7879
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
7880
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
7881
|
+
# @return [String]
|
7882
|
+
#
|
7667
7883
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBInstance AWS API Documentation
|
7668
7884
|
#
|
7669
7885
|
class DBInstance < Struct.new(
|
@@ -7740,7 +7956,8 @@ module Aws::RDS
|
|
7740
7956
|
:automation_mode,
|
7741
7957
|
:resume_full_automation_mode_time,
|
7742
7958
|
:custom_iam_instance_profile,
|
7743
|
-
:backup_target
|
7959
|
+
:backup_target,
|
7960
|
+
:network_type)
|
7744
7961
|
SENSITIVE = []
|
7745
7962
|
include Aws::Structure
|
7746
7963
|
end
|
@@ -9082,6 +9299,26 @@ module Aws::RDS
|
|
9082
9299
|
# The Amazon Resource Name (ARN) for the DB subnet group.
|
9083
9300
|
# @return [String]
|
9084
9301
|
#
|
9302
|
+
# @!attribute [rw] supported_network_types
|
9303
|
+
# The network type of the DB subnet group.
|
9304
|
+
#
|
9305
|
+
# Valid values:
|
9306
|
+
#
|
9307
|
+
# * `IPV4`
|
9308
|
+
#
|
9309
|
+
# * `DUAL`
|
9310
|
+
#
|
9311
|
+
# A `DBSubnetGroup` can support only the IPv4 protocol or the IPv4 and
|
9312
|
+
# the IPv6 protocols (`DUAL`).
|
9313
|
+
#
|
9314
|
+
# For more information, see [ Working with a DB instance in a VPC][1]
|
9315
|
+
# in the *Amazon RDS User Guide.*
|
9316
|
+
#
|
9317
|
+
#
|
9318
|
+
#
|
9319
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
9320
|
+
# @return [Array<String>]
|
9321
|
+
#
|
9085
9322
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBSubnetGroup AWS API Documentation
|
9086
9323
|
#
|
9087
9324
|
class DBSubnetGroup < Struct.new(
|
@@ -9090,7 +9327,8 @@ module Aws::RDS
|
|
9090
9327
|
:vpc_id,
|
9091
9328
|
:subnet_group_status,
|
9092
9329
|
:subnets,
|
9093
|
-
:db_subnet_group_arn
|
9330
|
+
:db_subnet_group_arn,
|
9331
|
+
:supported_network_types)
|
9094
9332
|
SENSITIVE = []
|
9095
9333
|
include Aws::Structure
|
9096
9334
|
end
|
@@ -13212,8 +13450,12 @@ module Aws::RDS
|
|
13212
13450
|
include Aws::Structure
|
13213
13451
|
end
|
13214
13452
|
|
13215
|
-
# This data type is used as a response element in the
|
13216
|
-
# action.
|
13453
|
+
# This data type is used as a response element in the
|
13454
|
+
# [DescribeEvents][1] action.
|
13455
|
+
#
|
13456
|
+
#
|
13457
|
+
#
|
13458
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_DescribeEvents.html
|
13217
13459
|
#
|
13218
13460
|
# @!attribute [rw] source_identifier
|
13219
13461
|
# Provides the identifier for the source of the event.
|
@@ -13253,7 +13495,11 @@ module Aws::RDS
|
|
13253
13495
|
end
|
13254
13496
|
|
13255
13497
|
# Contains the results of a successful invocation of the
|
13256
|
-
#
|
13498
|
+
# [DescribeEventCategories][1] operation.
|
13499
|
+
#
|
13500
|
+
#
|
13501
|
+
#
|
13502
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_DescribeEventCategories.html
|
13257
13503
|
#
|
13258
13504
|
# @!attribute [rw] source_type
|
13259
13505
|
# The source type that the returned categories belong to
|
@@ -14994,8 +15240,27 @@ module Aws::RDS
|
|
14994
15240
|
# @return [String]
|
14995
15241
|
#
|
14996
15242
|
# @!attribute [rw] performance_insights_retention_period
|
14997
|
-
# The
|
14998
|
-
#
|
15243
|
+
# The number of days to retain Performance Insights data. The default
|
15244
|
+
# is 7 days. The following values are valid:
|
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.
|
14999
15264
|
#
|
15000
15265
|
# Valid for: Multi-AZ DB clusters only
|
15001
15266
|
# @return [Integer]
|
@@ -15171,7 +15436,7 @@ module Aws::RDS
|
|
15171
15436
|
# `restore`.
|
15172
15437
|
#
|
15173
15438
|
# <note markdown="1"> To view the list of attributes available to modify, use the
|
15174
|
-
# DescribeDBClusterSnapshotAttributes API
|
15439
|
+
# DescribeDBClusterSnapshotAttributes API operation.
|
15175
15440
|
#
|
15176
15441
|
# </note>
|
15177
15442
|
# @return [String]
|
@@ -15291,6 +15556,7 @@ module Aws::RDS
|
|
15291
15556
|
# aws_backup_recovery_point_arn: "AwsBackupRecoveryPointArn",
|
15292
15557
|
# automation_mode: "full", # accepts full, all-paused
|
15293
15558
|
# resume_full_automation_mode_minutes: 1,
|
15559
|
+
# network_type: "String",
|
15294
15560
|
# }
|
15295
15561
|
#
|
15296
15562
|
# @!attribute [rw] db_instance_identifier
|
@@ -15319,10 +15585,11 @@ module Aws::RDS
|
|
15319
15585
|
#
|
15320
15586
|
# @!attribute [rw] db_instance_class
|
15321
15587
|
# The new compute and memory capacity of the DB instance, for example
|
15322
|
-
# db.
|
15588
|
+
# db.m5.large. Not all DB instance classes are available in all Amazon
|
15323
15589
|
# Web Services Regions, or for all database engines. For the full list
|
15324
15590
|
# of DB instance classes, and availability for your engine, see [DB
|
15325
|
-
#
|
15591
|
+
# instance classes][1] in the *Amazon RDS User Guide* or [Aurora DB
|
15592
|
+
# instance classes][2] in the *Amazon Aurora User Guide*.
|
15326
15593
|
#
|
15327
15594
|
# If you modify the DB instance class, an outage occurs during the
|
15328
15595
|
# change. The change is applied during the next maintenance window,
|
@@ -15335,6 +15602,7 @@ module Aws::RDS
|
|
15335
15602
|
#
|
15336
15603
|
#
|
15337
15604
|
# [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
|
15338
15606
|
# @return [String]
|
15339
15607
|
#
|
15340
15608
|
# @!attribute [rw] db_subnet_group_name
|
@@ -15452,7 +15720,7 @@ module Aws::RDS
|
|
15452
15720
|
#
|
15453
15721
|
# Constraints: Must contain from 8 to 128 characters.
|
15454
15722
|
#
|
15455
|
-
# <note markdown="1"> Amazon RDS API
|
15723
|
+
# <note markdown="1"> Amazon RDS API operations never return the password, so this action
|
15456
15724
|
# provides a way to regain access to a primary instance user if the
|
15457
15725
|
# password is lost. This includes restoring privileges that might have
|
15458
15726
|
# been accidentally revoked.
|
@@ -15507,8 +15775,8 @@ module Aws::RDS
|
|
15507
15775
|
# Constraints:
|
15508
15776
|
#
|
15509
15777
|
# * It must be a value from 0 to 35. It can't be set to 0 if the DB
|
15510
|
-
# instance is a source to read replicas. It can't be set to 0
|
15511
|
-
#
|
15778
|
+
# instance is a source to read replicas. It can't be set to 0 for
|
15779
|
+
# an RDS Custom for Oracle DB instance.
|
15512
15780
|
#
|
15513
15781
|
# * It can be specified for a MySQL read replica only if the source is
|
15514
15782
|
# running MySQL 5.6 or later.
|
@@ -15951,7 +16219,7 @@ module Aws::RDS
|
|
15951
16219
|
# the DB instance.
|
15952
16220
|
#
|
15953
16221
|
# For more information, see [Using Amazon Performance Insights][1] in
|
15954
|
-
# the *Amazon RDS User Guide
|
16222
|
+
# the *Amazon RDS User Guide*.
|
15955
16223
|
#
|
15956
16224
|
# This setting doesn't apply to RDS Custom.
|
15957
16225
|
#
|
@@ -15977,8 +16245,27 @@ module Aws::RDS
|
|
15977
16245
|
# @return [String]
|
15978
16246
|
#
|
15979
16247
|
# @!attribute [rw] performance_insights_retention_period
|
15980
|
-
# The
|
15981
|
-
#
|
16248
|
+
# The number of days to retain Performance Insights data. The default
|
16249
|
+
# is 7 days. The following values are valid:
|
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.
|
15982
16269
|
#
|
15983
16270
|
# This setting doesn't apply to RDS Custom.
|
15984
16271
|
# @return [Integer]
|
@@ -16131,6 +16418,27 @@ module Aws::RDS
|
|
16131
16418
|
# (default). The maximum value is `1,440`.
|
16132
16419
|
# @return [Integer]
|
16133
16420
|
#
|
16421
|
+
# @!attribute [rw] network_type
|
16422
|
+
# The network type of the DB instance.
|
16423
|
+
#
|
16424
|
+
# Valid values:
|
16425
|
+
#
|
16426
|
+
# * `IPV4`
|
16427
|
+
#
|
16428
|
+
# * `DUAL`
|
16429
|
+
#
|
16430
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
16431
|
+
# the DB instance. A `DBSubnetGroup` can support only the IPv4
|
16432
|
+
# protocol or the IPv4 and the IPv6 protocols (`DUAL`).
|
16433
|
+
#
|
16434
|
+
# For more information, see [ Working with a DB instance in a VPC][1]
|
16435
|
+
# in the *Amazon RDS User Guide.*
|
16436
|
+
#
|
16437
|
+
#
|
16438
|
+
#
|
16439
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
16440
|
+
# @return [String]
|
16441
|
+
#
|
16134
16442
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBInstanceMessage AWS API Documentation
|
16135
16443
|
#
|
16136
16444
|
class ModifyDBInstanceMessage < Struct.new(
|
@@ -16180,7 +16488,8 @@ module Aws::RDS
|
|
16180
16488
|
:enable_customer_owned_ip,
|
16181
16489
|
:aws_backup_recovery_point_arn,
|
16182
16490
|
:automation_mode,
|
16183
|
-
:resume_full_automation_mode_minutes
|
16491
|
+
:resume_full_automation_mode_minutes,
|
16492
|
+
:network_type)
|
16184
16493
|
SENSITIVE = []
|
16185
16494
|
include Aws::Structure
|
16186
16495
|
end
|
@@ -16445,11 +16754,11 @@ module Aws::RDS
|
|
16445
16754
|
# }
|
16446
16755
|
#
|
16447
16756
|
# @!attribute [rw] target_group_name
|
16448
|
-
# The name of the
|
16757
|
+
# The name of the target group to modify.
|
16449
16758
|
# @return [String]
|
16450
16759
|
#
|
16451
16760
|
# @!attribute [rw] db_proxy_name
|
16452
|
-
# The name of the
|
16761
|
+
# The name of the proxy.
|
16453
16762
|
# @return [String]
|
16454
16763
|
#
|
16455
16764
|
# @!attribute [rw] connection_pool_config
|
@@ -16508,7 +16817,7 @@ module Aws::RDS
|
|
16508
16817
|
# copy or restore a manual DB snapshot, set this value to `restore`.
|
16509
16818
|
#
|
16510
16819
|
# <note markdown="1"> To view the list of attributes available to modify, use the
|
16511
|
-
# DescribeDBSnapshotAttributes API
|
16820
|
+
# DescribeDBSnapshotAttributes API operation.
|
16512
16821
|
#
|
16513
16822
|
# </note>
|
16514
16823
|
# @return [String]
|
@@ -16959,6 +17268,13 @@ module Aws::RDS
|
|
16959
17268
|
include Aws::Structure
|
16960
17269
|
end
|
16961
17270
|
|
17271
|
+
# The network type is invalid for the DB instance. Valid nework type
|
17272
|
+
# values are `IPV4` and `DUAL`.
|
17273
|
+
#
|
17274
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/NetworkTypeNotSupported AWS API Documentation
|
17275
|
+
#
|
17276
|
+
class NetworkTypeNotSupported < Aws::EmptyStructure; end
|
17277
|
+
|
16962
17278
|
# Option details.
|
16963
17279
|
#
|
16964
17280
|
# @!attribute [rw] option_name
|
@@ -17614,6 +17930,20 @@ module Aws::RDS
|
|
17614
17930
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html
|
17615
17931
|
# @return [Boolean]
|
17616
17932
|
#
|
17933
|
+
# @!attribute [rw] supported_network_types
|
17934
|
+
# The network types supported by the DB instance (`IPV4` or `DUAL`).
|
17935
|
+
#
|
17936
|
+
# A DB instance can support only the IPv4 protocol or the IPv4 and the
|
17937
|
+
# IPv6 protocols (`DUAL`).
|
17938
|
+
#
|
17939
|
+
# For more information, see [ Working with a DB instance in a VPC][1]
|
17940
|
+
# in the *Amazon RDS User Guide.*
|
17941
|
+
#
|
17942
|
+
#
|
17943
|
+
#
|
17944
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
17945
|
+
# @return [Array<String>]
|
17946
|
+
#
|
17617
17947
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/OrderableDBInstanceOption AWS API Documentation
|
17618
17948
|
#
|
17619
17949
|
class OrderableDBInstanceOption < Struct.new(
|
@@ -17645,7 +17975,8 @@ module Aws::RDS
|
|
17645
17975
|
:outpost_capable,
|
17646
17976
|
:supported_activity_stream_modes,
|
17647
17977
|
:supports_global_databases,
|
17648
|
-
:supports_clusters
|
17978
|
+
:supports_clusters,
|
17979
|
+
:supported_network_types)
|
17649
17980
|
SENSITIVE = []
|
17650
17981
|
include Aws::Structure
|
17651
17982
|
end
|
@@ -19213,9 +19544,9 @@ module Aws::RDS
|
|
19213
19544
|
# @!attribute [rw] engine
|
19214
19545
|
# The name of the database engine to be used for this DB cluster.
|
19215
19546
|
#
|
19216
|
-
# Valid Values: `aurora` (for MySQL 5.6-compatible Aurora)
|
19547
|
+
# Valid Values: `aurora` (for MySQL 5.6-compatible Aurora) and
|
19217
19548
|
# `aurora-mysql` (for MySQL 5.7-compatible and MySQL 8.0-compatible
|
19218
|
-
# Aurora)
|
19549
|
+
# Aurora)
|
19219
19550
|
# @return [String]
|
19220
19551
|
#
|
19221
19552
|
# @!attribute [rw] engine_version
|
@@ -19234,20 +19565,10 @@ module Aws::RDS
|
|
19234
19565
|
# `aws rds describe-db-engine-versions --engine aurora-mysql --query
|
19235
19566
|
# "DBEngineVersions[].EngineVersion"`
|
19236
19567
|
#
|
19237
|
-
# To list all of the available engine versions for
|
19238
|
-
# `aurora-postgresql`, use the following command:
|
19239
|
-
#
|
19240
|
-
# `aws rds describe-db-engine-versions --engine aurora-postgresql
|
19241
|
-
# --query "DBEngineVersions[].EngineVersion"`
|
19242
|
-
#
|
19243
19568
|
# **Aurora MySQL**
|
19244
19569
|
#
|
19245
|
-
# Example: `5.6.10a`, `5.6.mysql_aurora.1.19.2`,
|
19246
|
-
# `5.7.mysql_aurora.2.
|
19247
|
-
#
|
19248
|
-
# **Aurora PostgreSQL**
|
19249
|
-
#
|
19250
|
-
# Example: `9.6.3`, `10.7`
|
19570
|
+
# Example: `5.6.10a`, `5.6.mysql_aurora.1.19.2`,
|
19571
|
+
# `5.7.mysql_aurora.2.07.1`, `8.0.mysql_aurora.3.02.0`
|
19251
19572
|
# @return [String]
|
19252
19573
|
#
|
19253
19574
|
# @!attribute [rw] port
|
@@ -19859,7 +20180,7 @@ module Aws::RDS
|
|
19859
20180
|
#
|
19860
20181
|
# For more information about exporting CloudWatch Logs for Amazon RDS,
|
19861
20182
|
# see [Publishing Database Logs to Amazon CloudWatch Logs][1] in the
|
19862
|
-
# *Amazon RDS User Guide
|
20183
|
+
# *Amazon RDS User Guide*.
|
19863
20184
|
#
|
19864
20185
|
# For more information about exporting CloudWatch Logs for Amazon
|
19865
20186
|
# Aurora, see [Publishing Database Logs to Amazon CloudWatch Logs][2]
|
@@ -20378,7 +20699,7 @@ module Aws::RDS
|
|
20378
20699
|
#
|
20379
20700
|
# For more information about exporting CloudWatch Logs for Amazon RDS,
|
20380
20701
|
# see [Publishing Database Logs to Amazon CloudWatch Logs][1] in the
|
20381
|
-
# *Amazon RDS User Guide
|
20702
|
+
# *Amazon RDS User Guide*.
|
20382
20703
|
#
|
20383
20704
|
# For more information about exporting CloudWatch Logs for Amazon
|
20384
20705
|
# Aurora, see [Publishing Database Logs to Amazon CloudWatch Logs][2]
|
@@ -20686,6 +21007,7 @@ module Aws::RDS
|
|
20686
21007
|
# enable_customer_owned_ip: false,
|
20687
21008
|
# custom_iam_instance_profile: "String",
|
20688
21009
|
# backup_target: "String",
|
21010
|
+
# network_type: "String",
|
20689
21011
|
# }
|
20690
21012
|
#
|
20691
21013
|
# @!attribute [rw] db_instance_identifier
|
@@ -21099,6 +21421,27 @@ module Aws::RDS
|
|
21099
21421
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
21100
21422
|
# @return [String]
|
21101
21423
|
#
|
21424
|
+
# @!attribute [rw] network_type
|
21425
|
+
# The network type of the DB instance.
|
21426
|
+
#
|
21427
|
+
# Valid values:
|
21428
|
+
#
|
21429
|
+
# * `IPV4`
|
21430
|
+
#
|
21431
|
+
# * `DUAL`
|
21432
|
+
#
|
21433
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
21434
|
+
# the DB instance. A `DBSubnetGroup` can support only the IPv4
|
21435
|
+
# protocol or the IPv4 and the IPv6 protocols (`DUAL`).
|
21436
|
+
#
|
21437
|
+
# For more information, see [ Working with a DB instance in a VPC][1]
|
21438
|
+
# in the *Amazon RDS User Guide.*
|
21439
|
+
#
|
21440
|
+
#
|
21441
|
+
#
|
21442
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
21443
|
+
# @return [String]
|
21444
|
+
#
|
21102
21445
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromDBSnapshotMessage AWS API Documentation
|
21103
21446
|
#
|
21104
21447
|
class RestoreDBInstanceFromDBSnapshotMessage < Struct.new(
|
@@ -21132,7 +21475,8 @@ module Aws::RDS
|
|
21132
21475
|
:deletion_protection,
|
21133
21476
|
:enable_customer_owned_ip,
|
21134
21477
|
:custom_iam_instance_profile,
|
21135
|
-
:backup_target
|
21478
|
+
:backup_target,
|
21479
|
+
:network_type)
|
21136
21480
|
SENSITIVE = []
|
21137
21481
|
include Aws::Structure
|
21138
21482
|
end
|
@@ -21215,6 +21559,7 @@ module Aws::RDS
|
|
21215
21559
|
# use_default_processor_features: false,
|
21216
21560
|
# deletion_protection: false,
|
21217
21561
|
# max_allocated_storage: 1,
|
21562
|
+
# network_type: "String",
|
21218
21563
|
# }
|
21219
21564
|
#
|
21220
21565
|
# @!attribute [rw] db_name
|
@@ -21576,7 +21921,7 @@ module Aws::RDS
|
|
21576
21921
|
# the DB instance.
|
21577
21922
|
#
|
21578
21923
|
# For more information, see [Using Amazon Performance Insights][1] in
|
21579
|
-
# the *Amazon RDS User Guide
|
21924
|
+
# the *Amazon RDS User Guide*.
|
21580
21925
|
#
|
21581
21926
|
#
|
21582
21927
|
#
|
@@ -21598,8 +21943,27 @@ module Aws::RDS
|
|
21598
21943
|
# @return [String]
|
21599
21944
|
#
|
21600
21945
|
# @!attribute [rw] performance_insights_retention_period
|
21601
|
-
# The
|
21602
|
-
#
|
21946
|
+
# The number of days to retain Performance Insights data. The default
|
21947
|
+
# is 7 days. The following values are valid:
|
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.
|
21603
21967
|
# @return [Integer]
|
21604
21968
|
#
|
21605
21969
|
# @!attribute [rw] enable_cloudwatch_logs_exports
|
@@ -21647,6 +22011,27 @@ module Aws::RDS
|
|
21647
22011
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.Autoscaling
|
21648
22012
|
# @return [Integer]
|
21649
22013
|
#
|
22014
|
+
# @!attribute [rw] network_type
|
22015
|
+
# The network type of the DB instance.
|
22016
|
+
#
|
22017
|
+
# Valid values:
|
22018
|
+
#
|
22019
|
+
# * `IPV4`
|
22020
|
+
#
|
22021
|
+
# * `DUAL`
|
22022
|
+
#
|
22023
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
22024
|
+
# the DB instance. A `DBSubnetGroup` can support only the IPv4
|
22025
|
+
# protocol or the IPv4 and the IPv6 protocols (`DUAL`).
|
22026
|
+
#
|
22027
|
+
# For more information, see [ Working with a DB instance in a VPC][1]
|
22028
|
+
# in the *Amazon RDS User Guide.*
|
22029
|
+
#
|
22030
|
+
#
|
22031
|
+
#
|
22032
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
22033
|
+
# @return [String]
|
22034
|
+
#
|
21650
22035
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromS3Message AWS API Documentation
|
21651
22036
|
#
|
21652
22037
|
class RestoreDBInstanceFromS3Message < Struct.new(
|
@@ -21693,7 +22078,8 @@ module Aws::RDS
|
|
21693
22078
|
:processor_features,
|
21694
22079
|
:use_default_processor_features,
|
21695
22080
|
:deletion_protection,
|
21696
|
-
:max_allocated_storage
|
22081
|
+
:max_allocated_storage,
|
22082
|
+
:network_type)
|
21697
22083
|
SENSITIVE = []
|
21698
22084
|
include Aws::Structure
|
21699
22085
|
end
|
@@ -21768,6 +22154,7 @@ module Aws::RDS
|
|
21768
22154
|
# enable_customer_owned_ip: false,
|
21769
22155
|
# custom_iam_instance_profile: "String",
|
21770
22156
|
# backup_target: "String",
|
22157
|
+
# network_type: "String",
|
21771
22158
|
# }
|
21772
22159
|
#
|
21773
22160
|
# @!attribute [rw] source_db_instance_identifier
|
@@ -22207,6 +22594,27 @@ module Aws::RDS
|
|
22207
22594
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
22208
22595
|
# @return [String]
|
22209
22596
|
#
|
22597
|
+
# @!attribute [rw] network_type
|
22598
|
+
# The network type of the DB instance.
|
22599
|
+
#
|
22600
|
+
# Valid values:
|
22601
|
+
#
|
22602
|
+
# * `IPV4`
|
22603
|
+
#
|
22604
|
+
# * `DUAL`
|
22605
|
+
#
|
22606
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
22607
|
+
# the DB instance. A `DBSubnetGroup` can support only the IPv4
|
22608
|
+
# protocol or the IPv4 and the IPv6 protocols (`DUAL`).
|
22609
|
+
#
|
22610
|
+
# For more information, see [ Working with a DB instance in a VPC][1]
|
22611
|
+
# in the *Amazon RDS User Guide.*
|
22612
|
+
#
|
22613
|
+
#
|
22614
|
+
#
|
22615
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
22616
|
+
# @return [String]
|
22617
|
+
#
|
22210
22618
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceToPointInTimeMessage AWS API Documentation
|
22211
22619
|
#
|
22212
22620
|
class RestoreDBInstanceToPointInTimeMessage < Struct.new(
|
@@ -22245,7 +22653,8 @@ module Aws::RDS
|
|
22245
22653
|
:source_db_instance_automated_backups_arn,
|
22246
22654
|
:enable_customer_owned_ip,
|
22247
22655
|
:custom_iam_instance_profile,
|
22248
|
-
:backup_target
|
22656
|
+
:backup_target,
|
22657
|
+
:network_type)
|
22249
22658
|
SENSITIVE = []
|
22250
22659
|
include Aws::Structure
|
22251
22660
|
end
|
@@ -22889,13 +23298,35 @@ module Aws::RDS
|
|
22889
23298
|
# @return [String]
|
22890
23299
|
#
|
22891
23300
|
# @!attribute [rw] pre_signed_url
|
22892
|
-
#
|
22893
|
-
#
|
23301
|
+
# In an Amazon Web Services GovCloud (US) Region, an URL that contains
|
23302
|
+
# a Signature Version 4 signed request for the
|
23303
|
+
# `StartDBInstanceAutomatedBackupsReplication` operation to call in
|
22894
23304
|
# the Amazon Web Services Region of the source DB instance. The
|
22895
23305
|
# presigned URL must be a valid request for the
|
22896
|
-
# StartDBInstanceAutomatedBackupsReplication API
|
22897
|
-
#
|
22898
|
-
#
|
23306
|
+
# `StartDBInstanceAutomatedBackupsReplication` API operation that can
|
23307
|
+
# run in the Amazon Web Services Region that contains the source DB
|
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
|
22899
23330
|
# @return [String]
|
22900
23331
|
#
|
22901
23332
|
# @!attribute [rw] source_region
|
@@ -23661,7 +24092,9 @@ module Aws::RDS
|
|
23661
24092
|
# @return [String]
|
23662
24093
|
#
|
23663
24094
|
# @!attribute [rw] status
|
23664
|
-
# The status of the VPC security group.
|
24095
|
+
# The membership status of the VPC security group.
|
24096
|
+
#
|
24097
|
+
# Currently, the only valid status is `active`.
|
23665
24098
|
# @return [String]
|
23666
24099
|
#
|
23667
24100
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/VpcSecurityGroupMembership AWS API Documentation
|