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
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -922,6 +922,10 @@ module Aws::RDS
|
|
922
922
|
# is only for non-Aurora Multi-AZ DB clusters.
|
923
923
|
# @return [Integer]
|
924
924
|
#
|
925
|
+
# @!attribute [rw] storage_type
|
926
|
+
# The storage type for the DB cluster.
|
927
|
+
# @return [String]
|
928
|
+
#
|
925
929
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ClusterPendingModifiedValues AWS API Documentation
|
926
930
|
#
|
927
931
|
class ClusterPendingModifiedValues < Struct.new(
|
@@ -932,7 +936,8 @@ module Aws::RDS
|
|
932
936
|
:engine_version,
|
933
937
|
:backup_retention_period,
|
934
938
|
:allocated_storage,
|
935
|
-
:iops
|
939
|
+
:iops,
|
940
|
+
:storage_type)
|
936
941
|
SENSITIVE = []
|
937
942
|
include Aws::Structure
|
938
943
|
end
|
@@ -1800,8 +1805,16 @@ module Aws::RDS
|
|
1800
1805
|
# @return [String]
|
1801
1806
|
#
|
1802
1807
|
# @!attribute [rw] image_id
|
1803
|
-
# The ID of the
|
1804
|
-
#
|
1808
|
+
# The ID of the Amazon Machine Image (AMI). For RDS Custom for SQL
|
1809
|
+
# Server, an AMI ID is required to create a CEV. For RDS Custom for
|
1810
|
+
# Oracle, the default is the most recent AMI available, but you can
|
1811
|
+
# specify an AMI ID that was used in a different Oracle CEV. Find the
|
1812
|
+
# AMIs used by your CEVs by calling the [DescribeDBEngineVersions][1]
|
1813
|
+
# operation.
|
1814
|
+
#
|
1815
|
+
#
|
1816
|
+
#
|
1817
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_DescribeDBEngineVersions.html
|
1805
1818
|
# @return [String]
|
1806
1819
|
#
|
1807
1820
|
# @!attribute [rw] kms_key_id
|
@@ -2390,26 +2403,20 @@ module Aws::RDS
|
|
2390
2403
|
# The `serverless` engine mode only applies for Aurora Serverless v1
|
2391
2404
|
# DB clusters.
|
2392
2405
|
#
|
2393
|
-
#
|
2394
|
-
#
|
2406
|
+
# For information about limitations and requirements for Serverless DB
|
2407
|
+
# clusters, see the following sections in the *Amazon Aurora User
|
2395
2408
|
# Guide*:
|
2396
2409
|
#
|
2397
2410
|
# * [Limitations of Aurora Serverless v1][1]
|
2398
2411
|
#
|
2399
2412
|
# * [Requirements for Aurora Serverless v2][2]
|
2400
2413
|
#
|
2401
|
-
# * [Limitations of parallel query][3]
|
2402
|
-
#
|
2403
|
-
# * [Limitations of Aurora global databases][4]
|
2404
|
-
#
|
2405
2414
|
# Valid for: Aurora DB clusters only
|
2406
2415
|
#
|
2407
2416
|
#
|
2408
2417
|
#
|
2409
2418
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless.html#aurora-serverless.limitations
|
2410
2419
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.requirements.html
|
2411
|
-
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-mysql-parallel-query.html#aurora-mysql-parallel-query-limitations
|
2412
|
-
# [4]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-global-database.html#aurora-global-database.limitations
|
2413
2420
|
# @return [String]
|
2414
2421
|
#
|
2415
2422
|
# @!attribute [rw] scaling_configuration
|
@@ -2535,13 +2542,15 @@ module Aws::RDS
|
|
2535
2542
|
#
|
2536
2543
|
# This setting is required to create a Multi-AZ DB cluster.
|
2537
2544
|
#
|
2538
|
-
#
|
2545
|
+
# When specified for a Multi-AZ DB cluster, a value for the `Iops`
|
2546
|
+
# parameter is required.
|
2539
2547
|
#
|
2540
|
-
#
|
2548
|
+
# Valid values: `aurora`, `aurora-iopt1` (Aurora DB clusters); `io1`
|
2549
|
+
# (Multi-AZ DB clusters)
|
2541
2550
|
#
|
2542
|
-
# Default: `io1`
|
2551
|
+
# Default: `aurora` (Aurora DB clusters); `io1` (Multi-AZ DB clusters)
|
2543
2552
|
#
|
2544
|
-
# Valid for: Multi-AZ DB clusters
|
2553
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
2545
2554
|
# @return [String]
|
2546
2555
|
#
|
2547
2556
|
# @!attribute [rw] iops
|
@@ -2871,11 +2880,11 @@ module Aws::RDS
|
|
2871
2880
|
#
|
2872
2881
|
# **Aurora MySQL**
|
2873
2882
|
#
|
2874
|
-
# Example: `
|
2883
|
+
# Example: `aurora-mysql5.7`, `aurora-mysql8.0`
|
2875
2884
|
#
|
2876
2885
|
# **Aurora PostgreSQL**
|
2877
2886
|
#
|
2878
|
-
# Example: `aurora-
|
2887
|
+
# Example: `aurora-postgresql14`
|
2879
2888
|
#
|
2880
2889
|
# **RDS for MySQL**
|
2881
2890
|
#
|
@@ -2904,10 +2913,7 @@ module Aws::RDS
|
|
2904
2913
|
#
|
2905
2914
|
# The following are the valid DB engine values:
|
2906
2915
|
#
|
2907
|
-
# * `aurora`
|
2908
|
-
#
|
2909
|
-
# * `aurora-mysql` (for MySQL 5.7-compatible and MySQL 8.0-compatible
|
2910
|
-
# Aurora)
|
2916
|
+
# * `aurora-mysql`
|
2911
2917
|
#
|
2912
2918
|
# * `aurora-postgresql`
|
2913
2919
|
#
|
@@ -3303,12 +3309,9 @@ module Aws::RDS
|
|
3303
3309
|
#
|
3304
3310
|
# Valid Values:
|
3305
3311
|
#
|
3306
|
-
# * `aurora` (for MySQL
|
3312
|
+
# * `aurora-mysql` (for Aurora MySQL DB instances)
|
3307
3313
|
#
|
3308
|
-
# * `aurora-
|
3309
|
-
# Aurora)
|
3310
|
-
#
|
3311
|
-
# * `aurora-postgresql`
|
3314
|
+
# * `aurora-postgresql` (for Aurora PostgreSQL DB instances)
|
3312
3315
|
#
|
3313
3316
|
# * `custom-oracle-ee (for RDS Custom for Oracle DB instances)`
|
3314
3317
|
#
|
@@ -5106,10 +5109,7 @@ module Aws::RDS
|
|
5106
5109
|
#
|
5107
5110
|
# The following are the valid DB engine values:
|
5108
5111
|
#
|
5109
|
-
# * `aurora`
|
5110
|
-
#
|
5111
|
-
# * `aurora-mysql` (for MySQL 5.7-compatible and MySQL 8.0-compatible
|
5112
|
-
# Aurora)
|
5112
|
+
# * `aurora-mysql`
|
5113
5113
|
#
|
5114
5114
|
# * `aurora-postgresql`
|
5115
5115
|
#
|
@@ -6055,8 +6055,8 @@ module Aws::RDS
|
|
6055
6055
|
# @return [Integer]
|
6056
6056
|
#
|
6057
6057
|
# @!attribute [rw] engine_mode
|
6058
|
-
# The DB engine mode of the DB cluster, either `provisioned
|
6059
|
-
# `serverless
|
6058
|
+
# The DB engine mode of the DB cluster, either `provisioned` or
|
6059
|
+
# `serverless`.
|
6060
6060
|
#
|
6061
6061
|
# For more information, see [ CreateDBCluster][1].
|
6062
6062
|
#
|
@@ -6177,8 +6177,6 @@ module Aws::RDS
|
|
6177
6177
|
#
|
6178
6178
|
# @!attribute [rw] storage_type
|
6179
6179
|
# The storage type associated with the DB cluster.
|
6180
|
-
#
|
6181
|
-
# This setting is only for non-Aurora Multi-AZ DB clusters.
|
6182
6180
|
# @return [String]
|
6183
6181
|
#
|
6184
6182
|
# @!attribute [rw] iops
|
@@ -6321,6 +6319,13 @@ module Aws::RDS
|
|
6321
6319
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/rds-secrets-manager.html
|
6322
6320
|
# @return [Types::MasterUserSecret]
|
6323
6321
|
#
|
6322
|
+
# @!attribute [rw] io_optimized_next_allowed_modification_time
|
6323
|
+
# The next time you can modify the DB cluster to use the
|
6324
|
+
# `aurora-iopt1` storage type.
|
6325
|
+
#
|
6326
|
+
# This setting is only for Aurora DB clusters.
|
6327
|
+
# @return [Time]
|
6328
|
+
#
|
6324
6329
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBCluster AWS API Documentation
|
6325
6330
|
#
|
6326
6331
|
class DBCluster < Struct.new(
|
@@ -6394,7 +6399,8 @@ module Aws::RDS
|
|
6394
6399
|
:serverless_v2_scaling_configuration,
|
6395
6400
|
:network_type,
|
6396
6401
|
:db_system_id,
|
6397
|
-
:master_user_secret
|
6402
|
+
:master_user_secret,
|
6403
|
+
:io_optimized_next_allowed_modification_time)
|
6398
6404
|
SENSITIVE = []
|
6399
6405
|
include Aws::Structure
|
6400
6406
|
end
|
@@ -7031,6 +7037,12 @@ module Aws::RDS
|
|
7031
7037
|
# Reserved for future use.
|
7032
7038
|
# @return [String]
|
7033
7039
|
#
|
7040
|
+
# @!attribute [rw] storage_type
|
7041
|
+
# The storage type associated with the DB cluster snapshot.
|
7042
|
+
#
|
7043
|
+
# This setting is only for Aurora DB clusters.
|
7044
|
+
# @return [String]
|
7045
|
+
#
|
7034
7046
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBClusterSnapshot AWS API Documentation
|
7035
7047
|
#
|
7036
7048
|
class DBClusterSnapshot < Struct.new(
|
@@ -7056,7 +7068,8 @@ module Aws::RDS
|
|
7056
7068
|
:source_db_cluster_snapshot_arn,
|
7057
7069
|
:iam_database_authentication_enabled,
|
7058
7070
|
:tag_list,
|
7059
|
-
:db_system_id
|
7071
|
+
:db_system_id,
|
7072
|
+
:storage_type)
|
7060
7073
|
SENSITIVE = []
|
7061
7074
|
include Aws::Structure
|
7062
7075
|
end
|
@@ -7756,15 +7769,15 @@ module Aws::RDS
|
|
7756
7769
|
# Management (IAM) accounts to database accounts is enabled, and
|
7757
7770
|
# otherwise false.
|
7758
7771
|
#
|
7759
|
-
#
|
7760
|
-
# database
|
7772
|
+
# For a list of engine versions that support IAM database
|
7773
|
+
# authentication, see [IAM database authentication][1] in the *Amazon
|
7774
|
+
# RDS User Guide* and [IAM database authentication in Aurora][2] in
|
7775
|
+
# the *Amazon Aurora User Guide*.
|
7761
7776
|
#
|
7762
|
-
# * For MySQL 5.6, minor version 5.6.34 or higher
|
7763
7777
|
#
|
7764
|
-
# * For MySQL 5.7, minor version 5.7.16 or higher
|
7765
7778
|
#
|
7766
|
-
#
|
7767
|
-
#
|
7779
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RDS_Fea_Regions_DB-eng.Feature.IamDatabaseAuthentication.html
|
7780
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Concepts.Aurora_Fea_Regions_DB-eng.Feature.IAMdbauth.html
|
7768
7781
|
# @return [Boolean]
|
7769
7782
|
#
|
7770
7783
|
# @!attribute [rw] performance_insights_enabled
|
@@ -10331,8 +10344,8 @@ module Aws::RDS
|
|
10331
10344
|
# Constraints:
|
10332
10345
|
#
|
10333
10346
|
# * Must contain a valid universally unique identifier (UUID). For
|
10334
|
-
# more information about UUIDs, see [
|
10335
|
-
#
|
10347
|
+
# more information about UUIDs, see [Universally unique
|
10348
|
+
# identifier][1].
|
10336
10349
|
#
|
10337
10350
|
# ^
|
10338
10351
|
#
|
@@ -10340,7 +10353,7 @@ module Aws::RDS
|
|
10340
10353
|
#
|
10341
10354
|
#
|
10342
10355
|
#
|
10343
|
-
# [1]:
|
10356
|
+
# [1]: https://en.wikipedia.org/wiki/Universally_unique_identifier
|
10344
10357
|
# @return [String]
|
10345
10358
|
#
|
10346
10359
|
# @!attribute [rw] filters
|
@@ -10789,11 +10802,12 @@ module Aws::RDS
|
|
10789
10802
|
#
|
10790
10803
|
# Valid Values:
|
10791
10804
|
#
|
10792
|
-
# * `aurora-mysql`
|
10793
|
-
# Aurora)
|
10805
|
+
# * `aurora-mysql`
|
10794
10806
|
#
|
10795
10807
|
# * `aurora-postgresql`
|
10796
10808
|
#
|
10809
|
+
# * `custom-oracle-ee`
|
10810
|
+
#
|
10797
10811
|
# * `mariadb`
|
10798
10812
|
#
|
10799
10813
|
# * `mysql`
|
@@ -11833,8 +11847,6 @@ module Aws::RDS
|
|
11833
11847
|
#
|
11834
11848
|
# Valid Values:
|
11835
11849
|
#
|
11836
|
-
# * `aurora5.6`
|
11837
|
-
#
|
11838
11850
|
# * `aurora-mysql5.7`
|
11839
11851
|
#
|
11840
11852
|
# * `aurora-mysql8.0`
|
@@ -12414,11 +12426,12 @@ module Aws::RDS
|
|
12414
12426
|
#
|
12415
12427
|
# Valid Values:
|
12416
12428
|
#
|
12417
|
-
# * `aurora-mysql`
|
12418
|
-
# Aurora)
|
12429
|
+
# * `aurora-mysql`
|
12419
12430
|
#
|
12420
12431
|
# * `aurora-postgresql`
|
12421
12432
|
#
|
12433
|
+
# * `custom-oracle-ee`
|
12434
|
+
#
|
12422
12435
|
# * `mariadb`
|
12423
12436
|
#
|
12424
12437
|
# * `mysql`
|
@@ -14601,19 +14614,12 @@ module Aws::RDS
|
|
14601
14614
|
# all replicas must be running an engine version that's the same or
|
14602
14615
|
# later than the version you specify.
|
14603
14616
|
#
|
14604
|
-
# To list all of the available engine versions for Aurora MySQL
|
14605
|
-
# version 2 (5.7-compatible) and version 3 (MySQL 8.0-compatible), use
|
14617
|
+
# To list all of the available engine versions for Aurora MySQL, use
|
14606
14618
|
# the following command:
|
14607
14619
|
#
|
14608
14620
|
# `aws rds describe-db-engine-versions --engine aurora-mysql --query
|
14609
14621
|
# "DBEngineVersions[].EngineVersion"`
|
14610
14622
|
#
|
14611
|
-
# To list all of the available engine versions for MySQL
|
14612
|
-
# 5.6-compatible Aurora, use the following command:
|
14613
|
-
#
|
14614
|
-
# `aws rds describe-db-engine-versions --engine aurora --query
|
14615
|
-
# "DBEngineVersions[].EngineVersion"`
|
14616
|
-
#
|
14617
14623
|
# To list all of the available engine versions for Aurora PostgreSQL,
|
14618
14624
|
# use the following command:
|
14619
14625
|
#
|
@@ -14779,13 +14785,15 @@ module Aws::RDS
|
|
14779
14785
|
# @!attribute [rw] storage_type
|
14780
14786
|
# Specifies the storage type to be associated with the DB cluster.
|
14781
14787
|
#
|
14782
|
-
#
|
14788
|
+
# When specified for a Multi-AZ DB cluster, a value for the `Iops`
|
14789
|
+
# parameter is required.
|
14783
14790
|
#
|
14784
|
-
#
|
14791
|
+
# Valid values: `aurora`, `aurora-iopt1` (Aurora DB clusters); `io1`
|
14792
|
+
# (Multi-AZ DB clusters)
|
14785
14793
|
#
|
14786
|
-
# Default: `io1`
|
14794
|
+
# Default: `aurora` (Aurora DB clusters); `io1` (Multi-AZ DB clusters)
|
14787
14795
|
#
|
14788
|
-
# Valid for: Multi-AZ DB clusters
|
14796
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
14789
14797
|
# @return [String]
|
14790
14798
|
#
|
14791
14799
|
# @!attribute [rw] iops
|
@@ -16163,11 +16171,11 @@ module Aws::RDS
|
|
16163
16171
|
# A value that indicates whether to manage the master user password
|
16164
16172
|
# with Amazon Web Services Secrets Manager.
|
16165
16173
|
#
|
16166
|
-
# If the DB
|
16174
|
+
# If the DB instance doesn't manage the master user password with
|
16167
16175
|
# Amazon Web Services Secrets Manager, you can turn on this
|
16168
16176
|
# management. In this case, you can't specify `MasterUserPassword`.
|
16169
16177
|
#
|
16170
|
-
# If the DB
|
16178
|
+
# If the DB instance already manages the master user password with
|
16171
16179
|
# Amazon Web Services Secrets Manager, and you specify that the master
|
16172
16180
|
# user password is not managed with Amazon Web Services Secrets
|
16173
16181
|
# Manager, then you must specify `MasterUserPassword`. In this case,
|
@@ -16825,21 +16833,15 @@ module Aws::RDS
|
|
16825
16833
|
# applied during the next maintenance window unless `ApplyImmediately`
|
16826
16834
|
# is enabled.
|
16827
16835
|
#
|
16828
|
-
# To list all of the available engine versions for `aurora` (for MySQL
|
16829
|
-
# 5.6-compatible Aurora), use the following command:
|
16830
|
-
#
|
16831
|
-
# `` aws rds describe-db-engine-versions --engine aurora --query
|
16832
|
-
# '*[]|[?SupportsGlobalDatabases == `true`].[EngineVersion]' ``
|
16833
|
-
#
|
16834
16836
|
# To list all of the available engine versions for `aurora-mysql` (for
|
16835
|
-
# MySQL
|
16836
|
-
# following command:
|
16837
|
+
# MySQL-based Aurora global databases), use the following command:
|
16837
16838
|
#
|
16838
16839
|
# `` aws rds describe-db-engine-versions --engine aurora-mysql --query
|
16839
16840
|
# '*[]|[?SupportsGlobalDatabases == `true`].[EngineVersion]' ``
|
16840
16841
|
#
|
16841
|
-
# To list all of the available engine versions for
|
16842
|
-
#
|
16842
|
+
# To list all of the available engine versions for `aurora-postgresql`
|
16843
|
+
# (for PostgreSQL-based Aurora global databases), use the following
|
16844
|
+
# command:
|
16843
16845
|
#
|
16844
16846
|
# `` aws rds describe-db-engine-versions --engine aurora-postgresql
|
16845
16847
|
# --query '*[]|[?SupportsGlobalDatabases == `true`].[EngineVersion]'
|
@@ -18989,8 +18991,8 @@ module Aws::RDS
|
|
18989
18991
|
#
|
18990
18992
|
# @!attribute [rw] db_cluster_parameter_group_name
|
18991
18993
|
# The name of the DB cluster parameter group to associate with the
|
18992
|
-
# restored DB cluster. If this argument is omitted,
|
18993
|
-
#
|
18994
|
+
# restored DB cluster. If this argument is omitted, the default
|
18995
|
+
# parameter group for the engine version is used.
|
18994
18996
|
#
|
18995
18997
|
# Constraints:
|
18996
18998
|
#
|
@@ -19017,16 +19019,14 @@ module Aws::RDS
|
|
19017
19019
|
# @!attribute [rw] engine
|
19018
19020
|
# The name of the database engine to be used for this DB cluster.
|
19019
19021
|
#
|
19020
|
-
# Valid Values: `aurora-mysql` (for
|
19021
|
-
# 8.0-compatible Aurora)
|
19022
|
+
# Valid Values: `aurora-mysql` (for Aurora MySQL)
|
19022
19023
|
# @return [String]
|
19023
19024
|
#
|
19024
19025
|
# @!attribute [rw] engine_version
|
19025
19026
|
# The version number of the database engine to use.
|
19026
19027
|
#
|
19027
19028
|
# To list all of the available engine versions for `aurora-mysql`
|
19028
|
-
# (
|
19029
|
-
# following command:
|
19029
|
+
# (Aurora MySQL), use the following command:
|
19030
19030
|
#
|
19031
19031
|
# `aws rds describe-db-engine-versions --engine aurora-mysql --query
|
19032
19032
|
# "DBEngineVersions[].EngineVersion"`
|
@@ -19343,6 +19343,16 @@ module Aws::RDS
|
|
19343
19343
|
# each Amazon Web Services Region.
|
19344
19344
|
# @return [String]
|
19345
19345
|
#
|
19346
|
+
# @!attribute [rw] storage_type
|
19347
|
+
# Specifies the storage type to be associated with the DB cluster.
|
19348
|
+
#
|
19349
|
+
# Valid values: `aurora`, `aurora-iopt1`
|
19350
|
+
#
|
19351
|
+
# Default: `aurora`
|
19352
|
+
#
|
19353
|
+
# Valid for: Aurora DB clusters only
|
19354
|
+
# @return [String]
|
19355
|
+
#
|
19346
19356
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromS3Message AWS API Documentation
|
19347
19357
|
#
|
19348
19358
|
class RestoreDBClusterFromS3Message < Struct.new(
|
@@ -19380,7 +19390,8 @@ module Aws::RDS
|
|
19380
19390
|
:serverless_v2_scaling_configuration,
|
19381
19391
|
:network_type,
|
19382
19392
|
:manage_master_user_password,
|
19383
|
-
:master_user_secret_kms_key_id
|
19393
|
+
:master_user_secret_kms_key_id,
|
19394
|
+
:storage_type)
|
19384
19395
|
SENSITIVE = []
|
19385
19396
|
include Aws::Structure
|
19386
19397
|
end
|
@@ -19480,9 +19491,8 @@ module Aws::RDS
|
|
19480
19491
|
# you don't specify an engine version, the default version for the
|
19481
19492
|
# database engine in the Amazon Web Services Region is used.
|
19482
19493
|
#
|
19483
|
-
# To list all of the available engine versions for MySQL
|
19484
|
-
#
|
19485
|
-
# command:
|
19494
|
+
# To list all of the available engine versions for Aurora MySQL, use
|
19495
|
+
# the following command:
|
19486
19496
|
#
|
19487
19497
|
# `aws rds describe-db-engine-versions --engine aurora-mysql --query
|
19488
19498
|
# "DBEngineVersions[].EngineVersion"`
|
@@ -19677,8 +19687,8 @@ module Aws::RDS
|
|
19677
19687
|
# @return [Array<String>]
|
19678
19688
|
#
|
19679
19689
|
# @!attribute [rw] engine_mode
|
19680
|
-
# The DB engine mode of the DB cluster, either `provisioned
|
19681
|
-
# `serverless
|
19690
|
+
# The DB engine mode of the DB cluster, either `provisioned` or
|
19691
|
+
# `serverless`.
|
19682
19692
|
#
|
19683
19693
|
# For more information, see [ CreateDBCluster][1].
|
19684
19694
|
#
|
@@ -19772,14 +19782,15 @@ module Aws::RDS
|
|
19772
19782
|
# @return [String]
|
19773
19783
|
#
|
19774
19784
|
# @!attribute [rw] storage_type
|
19775
|
-
# Specifies the storage type to be associated with the
|
19776
|
-
# instance in the Multi-AZ DB cluster.
|
19785
|
+
# Specifies the storage type to be associated with the DB cluster.
|
19777
19786
|
#
|
19778
|
-
#
|
19787
|
+
# When specified for a Multi-AZ DB cluster, a value for the `Iops`
|
19788
|
+
# parameter is required.
|
19779
19789
|
#
|
19780
|
-
#
|
19790
|
+
# Valid values: `aurora`, `aurora-iopt1` (Aurora DB clusters); `io1`
|
19791
|
+
# (Multi-AZ DB clusters)
|
19781
19792
|
#
|
19782
|
-
# Default: `io1`
|
19793
|
+
# Default: `aurora` (Aurora DB clusters); `io1` (Multi-AZ DB clusters)
|
19783
19794
|
#
|
19784
19795
|
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
19785
19796
|
# @return [String]
|
@@ -19974,9 +19985,6 @@ module Aws::RDS
|
|
19974
19985
|
# * `copy-on-write` - The new DB cluster is restored as a clone of the
|
19975
19986
|
# source DB cluster.
|
19976
19987
|
#
|
19977
|
-
# Constraints: You can't specify `copy-on-write` if the engine
|
19978
|
-
# version of the source DB cluster is earlier than 1.11.
|
19979
|
-
#
|
19980
19988
|
# If you don't specify a `RestoreType` value, then the new DB cluster
|
19981
19989
|
# is restored as a full copy of the source DB cluster.
|
19982
19990
|
#
|
@@ -20266,16 +20274,17 @@ module Aws::RDS
|
|
20266
20274
|
# @return [String]
|
20267
20275
|
#
|
20268
20276
|
# @!attribute [rw] storage_type
|
20269
|
-
# Specifies the storage type to be associated with the
|
20270
|
-
# instance in the Multi-AZ DB cluster.
|
20277
|
+
# Specifies the storage type to be associated with the DB cluster.
|
20271
20278
|
#
|
20272
|
-
#
|
20279
|
+
# When specified for a Multi-AZ DB cluster, a value for the `Iops`
|
20280
|
+
# parameter is required.
|
20273
20281
|
#
|
20274
|
-
#
|
20282
|
+
# Valid values: `aurora`, `aurora-iopt1` (Aurora DB clusters); `io1`
|
20283
|
+
# (Multi-AZ DB clusters)
|
20275
20284
|
#
|
20276
|
-
# Default: `io1`
|
20285
|
+
# Default: `aurora` (Aurora DB clusters); `io1` (Multi-AZ DB clusters)
|
20277
20286
|
#
|
20278
|
-
# Valid for: Multi-AZ DB clusters
|
20287
|
+
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
20279
20288
|
# @return [String]
|
20280
20289
|
#
|
20281
20290
|
# @!attribute [rw] publicly_accessible
|
@@ -23095,8 +23104,14 @@ module Aws::RDS
|
|
23095
23104
|
#
|
23096
23105
|
class StorageQuotaExceededFault < Aws::EmptyStructure; end
|
23097
23106
|
|
23098
|
-
#
|
23099
|
-
# DB
|
23107
|
+
# The `aurora-iopt1` storage type isn't available, because you modified
|
23108
|
+
# the DB cluster to use this storage type less than one month ago.
|
23109
|
+
#
|
23110
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StorageTypeNotAvailableFault AWS API Documentation
|
23111
|
+
#
|
23112
|
+
class StorageTypeNotAvailableFault < Aws::EmptyStructure; end
|
23113
|
+
|
23114
|
+
# The specified `StorageType` can't be associated with the DB instance.
|
23100
23115
|
#
|
23101
23116
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StorageTypeNotSupportedFault AWS API Documentation
|
23102
23117
|
#
|
data/lib/aws-sdk-rds.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-rds
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.178.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-05-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sigv4
|