aws-sdk-rds 1.176.0 → 1.178.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +118 -100
- data/lib/aws-sdk-rds/client_api.rb +9 -0
- data/lib/aws-sdk-rds/db_cluster.rb +33 -37
- data/lib/aws-sdk-rds/db_cluster_parameter_group.rb +3 -6
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +18 -9
- data/lib/aws-sdk-rds/db_instance.rb +16 -19
- data/lib/aws-sdk-rds/db_parameter_group.rb +1 -4
- data/lib/aws-sdk-rds/errors.rb +11 -0
- data/lib/aws-sdk-rds/resource.rb +17 -29
- data/lib/aws-sdk-rds/types.rb +118 -103
- data/lib/aws-sdk-rds.rb +1 -1
- metadata +2 -2
@@ -598,6 +598,7 @@ module Aws::RDS
|
|
598
598
|
StopDBInstanceMessage = Shapes::StructureShape.new(name: 'StopDBInstanceMessage')
|
599
599
|
StopDBInstanceResult = Shapes::StructureShape.new(name: 'StopDBInstanceResult')
|
600
600
|
StorageQuotaExceededFault = Shapes::StructureShape.new(name: 'StorageQuotaExceededFault')
|
601
|
+
StorageTypeNotAvailableFault = Shapes::StructureShape.new(name: 'StorageTypeNotAvailableFault')
|
601
602
|
StorageTypeNotSupportedFault = Shapes::StructureShape.new(name: 'StorageTypeNotSupportedFault')
|
602
603
|
String = Shapes::StringShape.new(name: 'String')
|
603
604
|
String255 = Shapes::StringShape.new(name: 'String255')
|
@@ -797,6 +798,7 @@ module Aws::RDS
|
|
797
798
|
ClusterPendingModifiedValues.add_member(:backup_retention_period, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "BackupRetentionPeriod"))
|
798
799
|
ClusterPendingModifiedValues.add_member(:allocated_storage, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "AllocatedStorage"))
|
799
800
|
ClusterPendingModifiedValues.add_member(:iops, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "Iops"))
|
801
|
+
ClusterPendingModifiedValues.add_member(:storage_type, Shapes::ShapeRef.new(shape: String, location_name: "StorageType"))
|
800
802
|
ClusterPendingModifiedValues.struct_class = Types::ClusterPendingModifiedValues
|
801
803
|
|
802
804
|
ConnectionPoolConfiguration.add_member(:max_connections_percent, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxConnectionsPercent"))
|
@@ -1252,6 +1254,7 @@ module Aws::RDS
|
|
1252
1254
|
DBCluster.add_member(:network_type, Shapes::ShapeRef.new(shape: String, location_name: "NetworkType"))
|
1253
1255
|
DBCluster.add_member(:db_system_id, Shapes::ShapeRef.new(shape: String, location_name: "DBSystemId"))
|
1254
1256
|
DBCluster.add_member(:master_user_secret, Shapes::ShapeRef.new(shape: MasterUserSecret, location_name: "MasterUserSecret"))
|
1257
|
+
DBCluster.add_member(:io_optimized_next_allowed_modification_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "IOOptimizedNextAllowedModificationTime"))
|
1255
1258
|
DBCluster.struct_class = Types::DBCluster
|
1256
1259
|
|
1257
1260
|
DBClusterAlreadyExistsFault.struct_class = Types::DBClusterAlreadyExistsFault
|
@@ -1384,6 +1387,7 @@ module Aws::RDS
|
|
1384
1387
|
DBClusterSnapshot.add_member(:iam_database_authentication_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "IAMDatabaseAuthenticationEnabled"))
|
1385
1388
|
DBClusterSnapshot.add_member(:tag_list, Shapes::ShapeRef.new(shape: TagList, location_name: "TagList"))
|
1386
1389
|
DBClusterSnapshot.add_member(:db_system_id, Shapes::ShapeRef.new(shape: String, location_name: "DBSystemId"))
|
1390
|
+
DBClusterSnapshot.add_member(:storage_type, Shapes::ShapeRef.new(shape: String, location_name: "StorageType"))
|
1387
1391
|
DBClusterSnapshot.struct_class = Types::DBClusterSnapshot
|
1388
1392
|
|
1389
1393
|
DBClusterSnapshotAlreadyExistsFault.struct_class = Types::DBClusterSnapshotAlreadyExistsFault
|
@@ -3186,6 +3190,7 @@ module Aws::RDS
|
|
3186
3190
|
RestoreDBClusterFromS3Message.add_member(:network_type, Shapes::ShapeRef.new(shape: String, location_name: "NetworkType"))
|
3187
3191
|
RestoreDBClusterFromS3Message.add_member(:manage_master_user_password, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "ManageMasterUserPassword"))
|
3188
3192
|
RestoreDBClusterFromS3Message.add_member(:master_user_secret_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "MasterUserSecretKmsKeyId"))
|
3193
|
+
RestoreDBClusterFromS3Message.add_member(:storage_type, Shapes::ShapeRef.new(shape: String, location_name: "StorageType"))
|
3189
3194
|
RestoreDBClusterFromS3Message.struct_class = Types::RestoreDBClusterFromS3Message
|
3190
3195
|
|
3191
3196
|
RestoreDBClusterFromS3Result.add_member(:db_cluster, Shapes::ShapeRef.new(shape: DBCluster, location_name: "DBCluster"))
|
@@ -3537,6 +3542,8 @@ module Aws::RDS
|
|
3537
3542
|
|
3538
3543
|
StorageQuotaExceededFault.struct_class = Types::StorageQuotaExceededFault
|
3539
3544
|
|
3545
|
+
StorageTypeNotAvailableFault.struct_class = Types::StorageTypeNotAvailableFault
|
3546
|
+
|
3540
3547
|
StorageTypeNotSupportedFault.struct_class = Types::StorageTypeNotSupportedFault
|
3541
3548
|
|
3542
3549
|
StringList.member = Shapes::ShapeRef.new(shape: String)
|
@@ -4944,6 +4951,7 @@ module Aws::RDS
|
|
4944
4951
|
o.errors << Shapes::ShapeRef.new(shape: DBClusterAlreadyExistsFault)
|
4945
4952
|
o.errors << Shapes::ShapeRef.new(shape: DBInstanceAlreadyExistsFault)
|
4946
4953
|
o.errors << Shapes::ShapeRef.new(shape: DomainNotFoundFault)
|
4954
|
+
o.errors << Shapes::ShapeRef.new(shape: StorageTypeNotAvailableFault)
|
4947
4955
|
end)
|
4948
4956
|
|
4949
4957
|
api.add_operation(:modify_db_cluster_endpoint, Seahorse::Model::Operation.new.tap do |o|
|
@@ -5287,6 +5295,7 @@ module Aws::RDS
|
|
5287
5295
|
o.errors << Shapes::ShapeRef.new(shape: DBClusterNotFoundFault)
|
5288
5296
|
o.errors << Shapes::ShapeRef.new(shape: DomainNotFoundFault)
|
5289
5297
|
o.errors << Shapes::ShapeRef.new(shape: InsufficientStorageClusterCapacityFault)
|
5298
|
+
o.errors << Shapes::ShapeRef.new(shape: StorageTypeNotSupportedFault)
|
5290
5299
|
end)
|
5291
5300
|
|
5292
5301
|
api.add_operation(:restore_db_cluster_from_snapshot, Seahorse::Model::Operation.new.tap do |o|
|
@@ -343,8 +343,8 @@ module Aws::RDS
|
|
343
343
|
data[:capacity]
|
344
344
|
end
|
345
345
|
|
346
|
-
# The DB engine mode of the DB cluster, either `provisioned
|
347
|
-
# `serverless
|
346
|
+
# The DB engine mode of the DB cluster, either `provisioned` or
|
347
|
+
# `serverless`.
|
348
348
|
#
|
349
349
|
# For more information, see [ CreateDBCluster][1].
|
350
350
|
#
|
@@ -495,8 +495,6 @@ module Aws::RDS
|
|
495
495
|
end
|
496
496
|
|
497
497
|
# The storage type associated with the DB cluster.
|
498
|
-
#
|
499
|
-
# This setting is only for non-Aurora Multi-AZ DB clusters.
|
500
498
|
# @return [String]
|
501
499
|
def storage_type
|
502
500
|
data[:storage_type]
|
@@ -666,6 +664,15 @@ module Aws::RDS
|
|
666
664
|
data[:master_user_secret]
|
667
665
|
end
|
668
666
|
|
667
|
+
# The next time you can modify the DB cluster to use the `aurora-iopt1`
|
668
|
+
# storage type.
|
669
|
+
#
|
670
|
+
# This setting is only for Aurora DB clusters.
|
671
|
+
# @return [Time]
|
672
|
+
def io_optimized_next_allowed_modification_time
|
673
|
+
data[:io_optimized_next_allowed_modification_time]
|
674
|
+
end
|
675
|
+
|
669
676
|
# @!endgroup
|
670
677
|
|
671
678
|
# @return [Client]
|
@@ -1261,26 +1268,20 @@ module Aws::RDS
|
|
1261
1268
|
# The `serverless` engine mode only applies for Aurora Serverless v1 DB
|
1262
1269
|
# clusters.
|
1263
1270
|
#
|
1264
|
-
#
|
1265
|
-
#
|
1271
|
+
# For information about limitations and requirements for Serverless DB
|
1272
|
+
# clusters, see the following sections in the *Amazon Aurora User
|
1266
1273
|
# Guide*:
|
1267
1274
|
#
|
1268
1275
|
# * [Limitations of Aurora Serverless v1][1]
|
1269
1276
|
#
|
1270
1277
|
# * [Requirements for Aurora Serverless v2][2]
|
1271
1278
|
#
|
1272
|
-
# * [Limitations of parallel query][3]
|
1273
|
-
#
|
1274
|
-
# * [Limitations of Aurora global databases][4]
|
1275
|
-
#
|
1276
1279
|
# Valid for: Aurora DB clusters only
|
1277
1280
|
#
|
1278
1281
|
#
|
1279
1282
|
#
|
1280
1283
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless.html#aurora-serverless.limitations
|
1281
1284
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.requirements.html
|
1282
|
-
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-mysql-parallel-query.html#aurora-mysql-parallel-query-limitations
|
1283
|
-
# [4]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-global-database.html#aurora-global-database.limitations
|
1284
1285
|
# @option options [Types::ScalingConfiguration] :scaling_configuration
|
1285
1286
|
# For DB clusters in `serverless` DB engine mode, the scaling properties
|
1286
1287
|
# of the DB cluster.
|
@@ -1383,13 +1384,15 @@ module Aws::RDS
|
|
1383
1384
|
#
|
1384
1385
|
# This setting is required to create a Multi-AZ DB cluster.
|
1385
1386
|
#
|
1386
|
-
#
|
1387
|
+
# When specified for a Multi-AZ DB cluster, a value for the `Iops`
|
1388
|
+
# parameter is required.
|
1387
1389
|
#
|
1388
|
-
#
|
1390
|
+
# Valid values: `aurora`, `aurora-iopt1` (Aurora DB clusters); `io1`
|
1391
|
+
# (Multi-AZ DB clusters)
|
1389
1392
|
#
|
1390
|
-
# Default: `io1`
|
1393
|
+
# Default: `aurora` (Aurora DB clusters); `io1` (Multi-AZ DB clusters)
|
1391
1394
|
#
|
1392
|
-
# Valid for: Multi-AZ DB clusters
|
1395
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
1393
1396
|
# @option options [Integer] :iops
|
1394
1397
|
# The amount of Provisioned IOPS (input/output operations per second) to
|
1395
1398
|
# be initially allocated for each DB instance in the Multi-AZ DB
|
@@ -1981,19 +1984,12 @@ module Aws::RDS
|
|
1981
1984
|
# all replicas must be running an engine version that's the same or
|
1982
1985
|
# later than the version you specify.
|
1983
1986
|
#
|
1984
|
-
# To list all of the available engine versions for Aurora MySQL
|
1985
|
-
# 2 (5.7-compatible) and version 3 (MySQL 8.0-compatible), use the
|
1987
|
+
# To list all of the available engine versions for Aurora MySQL, use the
|
1986
1988
|
# following command:
|
1987
1989
|
#
|
1988
1990
|
# `aws rds describe-db-engine-versions --engine aurora-mysql --query
|
1989
1991
|
# "DBEngineVersions[].EngineVersion"`
|
1990
1992
|
#
|
1991
|
-
# To list all of the available engine versions for MySQL 5.6-compatible
|
1992
|
-
# Aurora, use the following command:
|
1993
|
-
#
|
1994
|
-
# `aws rds describe-db-engine-versions --engine aurora --query
|
1995
|
-
# "DBEngineVersions[].EngineVersion"`
|
1996
|
-
#
|
1997
1993
|
# To list all of the available engine versions for Aurora PostgreSQL,
|
1998
1994
|
# use the following command:
|
1999
1995
|
#
|
@@ -2134,13 +2130,15 @@ module Aws::RDS
|
|
2134
2130
|
# @option options [String] :storage_type
|
2135
2131
|
# Specifies the storage type to be associated with the DB cluster.
|
2136
2132
|
#
|
2137
|
-
#
|
2133
|
+
# When specified for a Multi-AZ DB cluster, a value for the `Iops`
|
2134
|
+
# parameter is required.
|
2138
2135
|
#
|
2139
|
-
#
|
2136
|
+
# Valid values: `aurora`, `aurora-iopt1` (Aurora DB clusters); `io1`
|
2137
|
+
# (Multi-AZ DB clusters)
|
2140
2138
|
#
|
2141
|
-
# Default: `io1`
|
2139
|
+
# Default: `aurora` (Aurora DB clusters); `io1` (Multi-AZ DB clusters)
|
2142
2140
|
#
|
2143
|
-
# Valid for: Multi-AZ DB clusters
|
2141
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
2144
2142
|
# @option options [Integer] :iops
|
2145
2143
|
# The amount of Provisioned IOPS (input/output operations per second) to
|
2146
2144
|
# be initially allocated for each DB instance in the Multi-AZ DB
|
@@ -2460,9 +2458,6 @@ module Aws::RDS
|
|
2460
2458
|
# * `copy-on-write` - The new DB cluster is restored as a clone of the
|
2461
2459
|
# source DB cluster.
|
2462
2460
|
#
|
2463
|
-
# Constraints: You can't specify `copy-on-write` if the engine version
|
2464
|
-
# of the source DB cluster is earlier than 1.11.
|
2465
|
-
#
|
2466
2461
|
# If you don't specify a `RestoreType` value, then the new DB cluster
|
2467
2462
|
# is restored as a full copy of the source DB cluster.
|
2468
2463
|
#
|
@@ -2699,16 +2694,17 @@ module Aws::RDS
|
|
2699
2694
|
#
|
2700
2695
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html
|
2701
2696
|
# @option options [String] :storage_type
|
2702
|
-
# Specifies the storage type to be associated with the
|
2703
|
-
# in the Multi-AZ DB cluster.
|
2697
|
+
# Specifies the storage type to be associated with the DB cluster.
|
2704
2698
|
#
|
2705
|
-
#
|
2699
|
+
# When specified for a Multi-AZ DB cluster, a value for the `Iops`
|
2700
|
+
# parameter is required.
|
2706
2701
|
#
|
2707
|
-
#
|
2702
|
+
# Valid values: `aurora`, `aurora-iopt1` (Aurora DB clusters); `io1`
|
2703
|
+
# (Multi-AZ DB clusters)
|
2708
2704
|
#
|
2709
|
-
# Default: `io1`
|
2705
|
+
# Default: `aurora` (Aurora DB clusters); `io1` (Multi-AZ DB clusters)
|
2710
2706
|
#
|
2711
|
-
# Valid for: Multi-AZ DB clusters
|
2707
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
2712
2708
|
# @option options [Boolean] :publicly_accessible
|
2713
2709
|
# A value that indicates whether the DB cluster is publicly accessible.
|
2714
2710
|
#
|
@@ -211,11 +211,11 @@ module Aws::RDS
|
|
211
211
|
#
|
212
212
|
# **Aurora MySQL**
|
213
213
|
#
|
214
|
-
# Example: `
|
214
|
+
# Example: `aurora-mysql5.7`, `aurora-mysql8.0`
|
215
215
|
#
|
216
216
|
# **Aurora PostgreSQL**
|
217
217
|
#
|
218
|
-
# Example: `aurora-
|
218
|
+
# Example: `aurora-postgresql14`
|
219
219
|
#
|
220
220
|
# **RDS for MySQL**
|
221
221
|
#
|
@@ -244,10 +244,7 @@ module Aws::RDS
|
|
244
244
|
#
|
245
245
|
# The following are the valid DB engine values:
|
246
246
|
#
|
247
|
-
# * `aurora`
|
248
|
-
#
|
249
|
-
# * `aurora-mysql` (for MySQL 5.7-compatible and MySQL 8.0-compatible
|
250
|
-
# Aurora)
|
247
|
+
# * `aurora-mysql`
|
251
248
|
#
|
252
249
|
# * `aurora-postgresql`
|
253
250
|
#
|
@@ -197,6 +197,14 @@ module Aws::RDS
|
|
197
197
|
data[:db_system_id]
|
198
198
|
end
|
199
199
|
|
200
|
+
# The storage type associated with the DB cluster snapshot.
|
201
|
+
#
|
202
|
+
# This setting is only for Aurora DB clusters.
|
203
|
+
# @return [String]
|
204
|
+
def storage_type
|
205
|
+
data[:storage_type]
|
206
|
+
end
|
207
|
+
|
200
208
|
# @!endgroup
|
201
209
|
|
202
210
|
# @return [Client]
|
@@ -590,8 +598,8 @@ module Aws::RDS
|
|
590
598
|
# you don't specify an engine version, the default version for the
|
591
599
|
# database engine in the Amazon Web Services Region is used.
|
592
600
|
#
|
593
|
-
# To list all of the available engine versions for MySQL
|
594
|
-
#
|
601
|
+
# To list all of the available engine versions for Aurora MySQL, use the
|
602
|
+
# following command:
|
595
603
|
#
|
596
604
|
# `aws rds describe-db-engine-versions --engine aurora-mysql --query
|
597
605
|
# "DBEngineVersions[].EngineVersion"`
|
@@ -762,8 +770,8 @@ module Aws::RDS
|
|
762
770
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
763
771
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
764
772
|
# @option options [String] :engine_mode
|
765
|
-
# The DB engine mode of the DB cluster, either `provisioned
|
766
|
-
# `serverless
|
773
|
+
# The DB engine mode of the DB cluster, either `provisioned` or
|
774
|
+
# `serverless`.
|
767
775
|
#
|
768
776
|
# For more information, see [ CreateDBCluster][1].
|
769
777
|
#
|
@@ -840,14 +848,15 @@ module Aws::RDS
|
|
840
848
|
#
|
841
849
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html
|
842
850
|
# @option options [String] :storage_type
|
843
|
-
# Specifies the storage type to be associated with the
|
844
|
-
# in the Multi-AZ DB cluster.
|
851
|
+
# Specifies the storage type to be associated with the DB cluster.
|
845
852
|
#
|
846
|
-
#
|
853
|
+
# When specified for a Multi-AZ DB cluster, a value for the `Iops`
|
854
|
+
# parameter is required.
|
847
855
|
#
|
848
|
-
#
|
856
|
+
# Valid values: `aurora`, `aurora-iopt1` (Aurora DB clusters); `io1`
|
857
|
+
# (Multi-AZ DB clusters)
|
849
858
|
#
|
850
|
-
# Default: `io1`
|
859
|
+
# Default: `aurora` (Aurora DB clusters); `io1` (Multi-AZ DB clusters)
|
851
860
|
#
|
852
861
|
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
853
862
|
# @option options [Integer] :iops
|
@@ -462,15 +462,15 @@ module Aws::RDS
|
|
462
462
|
# True if mapping of Amazon Web Services Identity and Access Management
|
463
463
|
# (IAM) accounts to database accounts is enabled, and otherwise false.
|
464
464
|
#
|
465
|
-
#
|
466
|
-
#
|
465
|
+
# For a list of engine versions that support IAM database
|
466
|
+
# authentication, see [IAM database authentication][1] in the *Amazon
|
467
|
+
# RDS User Guide* and [IAM database authentication in Aurora][2] in the
|
468
|
+
# *Amazon Aurora User Guide*.
|
467
469
|
#
|
468
|
-
# * For MySQL 5.6, minor version 5.6.34 or higher
|
469
470
|
#
|
470
|
-
# * For MySQL 5.7, minor version 5.7.16 or higher
|
471
471
|
#
|
472
|
-
#
|
473
|
-
#
|
472
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RDS_Fea_Regions_DB-eng.Feature.IamDatabaseAuthentication.html
|
473
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Concepts.Aurora_Fea_Regions_DB-eng.Feature.IAMdbauth.html
|
474
474
|
# @return [Boolean]
|
475
475
|
def iam_database_authentication_enabled
|
476
476
|
data[:iam_database_authentication_enabled]
|
@@ -1216,12 +1216,9 @@ module Aws::RDS
|
|
1216
1216
|
#
|
1217
1217
|
# Valid Values:
|
1218
1218
|
#
|
1219
|
-
# * `aurora` (for MySQL
|
1219
|
+
# * `aurora-mysql` (for Aurora MySQL DB instances)
|
1220
1220
|
#
|
1221
|
-
# * `aurora-
|
1222
|
-
# Aurora)
|
1223
|
-
#
|
1224
|
-
# * `aurora-postgresql`
|
1221
|
+
# * `aurora-postgresql` (for Aurora PostgreSQL DB instances)
|
1225
1222
|
#
|
1226
1223
|
# * `custom-oracle-ee (for RDS Custom for Oracle DB instances)`
|
1227
1224
|
#
|
@@ -3636,15 +3633,15 @@ module Aws::RDS
|
|
3636
3633
|
# A value that indicates whether to manage the master user password with
|
3637
3634
|
# Amazon Web Services Secrets Manager.
|
3638
3635
|
#
|
3639
|
-
# If the DB
|
3640
|
-
# Web Services Secrets Manager, you can turn on this management.
|
3641
|
-
# case, you can't specify `MasterUserPassword`.
|
3636
|
+
# If the DB instance doesn't manage the master user password with
|
3637
|
+
# Amazon Web Services Secrets Manager, you can turn on this management.
|
3638
|
+
# In this case, you can't specify `MasterUserPassword`.
|
3642
3639
|
#
|
3643
|
-
# If the DB
|
3644
|
-
# Web Services Secrets Manager, and you specify that the master
|
3645
|
-
# password is not managed with Amazon Web Services Secrets Manager,
|
3646
|
-
# you must specify `MasterUserPassword`. In this case, RDS deletes
|
3647
|
-
# secret and uses the new password for the master user specified by
|
3640
|
+
# If the DB instance already manages the master user password with
|
3641
|
+
# Amazon Web Services Secrets Manager, and you specify that the master
|
3642
|
+
# user password is not managed with Amazon Web Services Secrets Manager,
|
3643
|
+
# then you must specify `MasterUserPassword`. In this case, RDS deletes
|
3644
|
+
# the secret and uses the new password for the master user specified by
|
3648
3645
|
# `MasterUserPassword`.
|
3649
3646
|
#
|
3650
3647
|
# For more information, see [Password management with Amazon Web
|
@@ -226,10 +226,7 @@ module Aws::RDS
|
|
226
226
|
#
|
227
227
|
# The following are the valid DB engine values:
|
228
228
|
#
|
229
|
-
# * `aurora`
|
230
|
-
#
|
231
|
-
# * `aurora-mysql` (for MySQL 5.7-compatible and MySQL 8.0-compatible
|
232
|
-
# Aurora)
|
229
|
+
# * `aurora-mysql`
|
233
230
|
#
|
234
231
|
# * `aurora-postgresql`
|
235
232
|
#
|
data/lib/aws-sdk-rds/errors.rb
CHANGED
@@ -147,6 +147,7 @@ module Aws::RDS
|
|
147
147
|
# * {SourceDatabaseNotSupportedFault}
|
148
148
|
# * {SourceNotFoundFault}
|
149
149
|
# * {StorageQuotaExceededFault}
|
150
|
+
# * {StorageTypeNotAvailableFault}
|
150
151
|
# * {StorageTypeNotSupportedFault}
|
151
152
|
# * {SubnetAlreadyInUse}
|
152
153
|
# * {SubscriptionAlreadyExistFault}
|
@@ -1359,6 +1360,16 @@ module Aws::RDS
|
|
1359
1360
|
end
|
1360
1361
|
end
|
1361
1362
|
|
1363
|
+
class StorageTypeNotAvailableFault < ServiceError
|
1364
|
+
|
1365
|
+
# @param [Seahorse::Client::RequestContext] context
|
1366
|
+
# @param [String] message
|
1367
|
+
# @param [Aws::RDS::Types::StorageTypeNotAvailableFault] data
|
1368
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
1369
|
+
super(context, message, data)
|
1370
|
+
end
|
1371
|
+
end
|
1372
|
+
|
1362
1373
|
class StorageTypeNotSupportedFault < ServiceError
|
1363
1374
|
|
1364
1375
|
# @param [Seahorse::Client::RequestContext] context
|
data/lib/aws-sdk-rds/resource.rb
CHANGED
@@ -512,26 +512,20 @@ module Aws::RDS
|
|
512
512
|
# The `serverless` engine mode only applies for Aurora Serverless v1 DB
|
513
513
|
# clusters.
|
514
514
|
#
|
515
|
-
#
|
516
|
-
#
|
515
|
+
# For information about limitations and requirements for Serverless DB
|
516
|
+
# clusters, see the following sections in the *Amazon Aurora User
|
517
517
|
# Guide*:
|
518
518
|
#
|
519
519
|
# * [Limitations of Aurora Serverless v1][1]
|
520
520
|
#
|
521
521
|
# * [Requirements for Aurora Serverless v2][2]
|
522
522
|
#
|
523
|
-
# * [Limitations of parallel query][3]
|
524
|
-
#
|
525
|
-
# * [Limitations of Aurora global databases][4]
|
526
|
-
#
|
527
523
|
# Valid for: Aurora DB clusters only
|
528
524
|
#
|
529
525
|
#
|
530
526
|
#
|
531
527
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless.html#aurora-serverless.limitations
|
532
528
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.requirements.html
|
533
|
-
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-mysql-parallel-query.html#aurora-mysql-parallel-query-limitations
|
534
|
-
# [4]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-global-database.html#aurora-global-database.limitations
|
535
529
|
# @option options [Types::ScalingConfiguration] :scaling_configuration
|
536
530
|
# For DB clusters in `serverless` DB engine mode, the scaling properties
|
537
531
|
# of the DB cluster.
|
@@ -634,13 +628,15 @@ module Aws::RDS
|
|
634
628
|
#
|
635
629
|
# This setting is required to create a Multi-AZ DB cluster.
|
636
630
|
#
|
637
|
-
#
|
631
|
+
# When specified for a Multi-AZ DB cluster, a value for the `Iops`
|
632
|
+
# parameter is required.
|
638
633
|
#
|
639
|
-
#
|
634
|
+
# Valid values: `aurora`, `aurora-iopt1` (Aurora DB clusters); `io1`
|
635
|
+
# (Multi-AZ DB clusters)
|
640
636
|
#
|
641
|
-
# Default: `io1`
|
637
|
+
# Default: `aurora` (Aurora DB clusters); `io1` (Multi-AZ DB clusters)
|
642
638
|
#
|
643
|
-
# Valid for: Multi-AZ DB clusters
|
639
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
644
640
|
# @option options [Integer] :iops
|
645
641
|
# The amount of Provisioned IOPS (input/output operations per second) to
|
646
642
|
# be initially allocated for each DB instance in the Multi-AZ DB
|
@@ -903,11 +899,11 @@ module Aws::RDS
|
|
903
899
|
#
|
904
900
|
# **Aurora MySQL**
|
905
901
|
#
|
906
|
-
# Example: `
|
902
|
+
# Example: `aurora-mysql5.7`, `aurora-mysql8.0`
|
907
903
|
#
|
908
904
|
# **Aurora PostgreSQL**
|
909
905
|
#
|
910
|
-
# Example: `aurora-
|
906
|
+
# Example: `aurora-postgresql14`
|
911
907
|
#
|
912
908
|
# **RDS for MySQL**
|
913
909
|
#
|
@@ -936,10 +932,7 @@ module Aws::RDS
|
|
936
932
|
#
|
937
933
|
# The following are the valid DB engine values:
|
938
934
|
#
|
939
|
-
# * `aurora`
|
940
|
-
#
|
941
|
-
# * `aurora-mysql` (for MySQL 5.7-compatible and MySQL 8.0-compatible
|
942
|
-
# Aurora)
|
935
|
+
# * `aurora-mysql`
|
943
936
|
#
|
944
937
|
# * `aurora-postgresql`
|
945
938
|
#
|
@@ -1278,12 +1271,9 @@ module Aws::RDS
|
|
1278
1271
|
#
|
1279
1272
|
# Valid Values:
|
1280
1273
|
#
|
1281
|
-
# * `aurora` (for MySQL
|
1274
|
+
# * `aurora-mysql` (for Aurora MySQL DB instances)
|
1282
1275
|
#
|
1283
|
-
# * `aurora-
|
1284
|
-
# Aurora)
|
1285
|
-
#
|
1286
|
-
# * `aurora-postgresql`
|
1276
|
+
# * `aurora-postgresql` (for Aurora PostgreSQL DB instances)
|
1287
1277
|
#
|
1288
1278
|
# * `custom-oracle-ee (for RDS Custom for Oracle DB instances)`
|
1289
1279
|
#
|
@@ -2204,10 +2194,7 @@ module Aws::RDS
|
|
2204
2194
|
#
|
2205
2195
|
# The following are the valid DB engine values:
|
2206
2196
|
#
|
2207
|
-
# * `aurora`
|
2208
|
-
#
|
2209
|
-
# * `aurora-mysql` (for MySQL 5.7-compatible and MySQL 8.0-compatible
|
2210
|
-
# Aurora)
|
2197
|
+
# * `aurora-mysql`
|
2211
2198
|
#
|
2212
2199
|
# * `aurora-postgresql`
|
2213
2200
|
#
|
@@ -2750,11 +2737,12 @@ module Aws::RDS
|
|
2750
2737
|
#
|
2751
2738
|
# Valid Values:
|
2752
2739
|
#
|
2753
|
-
# * `aurora-mysql`
|
2754
|
-
# Aurora)
|
2740
|
+
# * `aurora-mysql`
|
2755
2741
|
#
|
2756
2742
|
# * `aurora-postgresql`
|
2757
2743
|
#
|
2744
|
+
# * `custom-oracle-ee`
|
2745
|
+
#
|
2758
2746
|
# * `mariadb`
|
2759
2747
|
#
|
2760
2748
|
# * `mysql`
|