aws-sdk-rds 1.134.0 → 1.135.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +119 -84
- data/lib/aws-sdk-rds/db_cluster.rb +14 -14
- data/lib/aws-sdk-rds/db_cluster_parameter_group.rb +3 -2
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +12 -6
- data/lib/aws-sdk-rds/db_instance.rb +59 -39
- data/lib/aws-sdk-rds/db_parameter_group.rb +21 -10
- data/lib/aws-sdk-rds/resource.rb +67 -41
- data/lib/aws-sdk-rds/types.rb +130 -83
- data/lib/aws-sdk-rds.rb +1 -1
- metadata +2 -2
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -1700,8 +1700,9 @@ module Aws::RDS
|
|
1700
1700
|
# @!attribute [rw] engine_version
|
1701
1701
|
# The name of your CEV. The name format is `19.customized_string `.
|
1702
1702
|
# For example, a valid name is `19.my_cev1`. This setting is required
|
1703
|
-
# for RDS Custom, but optional for Amazon RDS. The
|
1704
|
-
# `Engine` and `EngineVersion` is unique per customer
|
1703
|
+
# for RDS Custom for Oracle, but optional for Amazon RDS. The
|
1704
|
+
# combination of `Engine` and `EngineVersion` is unique per customer
|
1705
|
+
# per Region.
|
1705
1706
|
# @return [String]
|
1706
1707
|
#
|
1707
1708
|
# @!attribute [rw] database_installation_files_s3_bucket_name
|
@@ -2027,7 +2028,8 @@ module Aws::RDS
|
|
2027
2028
|
#
|
2028
2029
|
# * `aurora` (for MySQL 5.6-compatible Aurora)
|
2029
2030
|
#
|
2030
|
-
# * `aurora-mysql` (for MySQL 5.7-compatible
|
2031
|
+
# * `aurora-mysql` (for MySQL 5.7-compatible and MySQL 8.0-compatible
|
2032
|
+
# Aurora)
|
2031
2033
|
#
|
2032
2034
|
# * `aurora-postgresql`
|
2033
2035
|
#
|
@@ -2048,7 +2050,8 @@ module Aws::RDS
|
|
2048
2050
|
# "DBEngineVersions[].EngineVersion"`
|
2049
2051
|
#
|
2050
2052
|
# To list all of the available engine versions for MySQL
|
2051
|
-
# 5.7-compatible Aurora, use the following
|
2053
|
+
# 5.7-compatible and MySQL 8.0-compatible Aurora, use the following
|
2054
|
+
# command:
|
2052
2055
|
#
|
2053
2056
|
# `aws rds describe-db-engine-versions --engine aurora-mysql --query
|
2054
2057
|
# "DBEngineVersions[].EngineVersion"`
|
@@ -2522,11 +2525,11 @@ module Aws::RDS
|
|
2522
2525
|
#
|
2523
2526
|
# This setting is required to create a Multi-AZ DB cluster.
|
2524
2527
|
#
|
2525
|
-
# Valid values: `
|
2528
|
+
# Valid values: `io1`
|
2526
2529
|
#
|
2527
|
-
#
|
2530
|
+
# When specified, a value for the `Iops` parameter is required.
|
2528
2531
|
#
|
2529
|
-
# Default: `io1`
|
2532
|
+
# Default: `io1`
|
2530
2533
|
#
|
2531
2534
|
# Valid for: Multi-AZ DB clusters only
|
2532
2535
|
# @return [String]
|
@@ -2761,7 +2764,7 @@ module Aws::RDS
|
|
2761
2764
|
#
|
2762
2765
|
# **Aurora MySQL**
|
2763
2766
|
#
|
2764
|
-
# Example: `aurora5.6`, `aurora-mysql5.7`
|
2767
|
+
# Example: `aurora5.6`, `aurora-mysql5.7`, `aurora-mysql8.0`
|
2765
2768
|
#
|
2766
2769
|
# **Aurora PostgreSQL**
|
2767
2770
|
#
|
@@ -2796,7 +2799,8 @@ module Aws::RDS
|
|
2796
2799
|
#
|
2797
2800
|
# * `aurora` (for MySQL 5.6-compatible Aurora)
|
2798
2801
|
#
|
2799
|
-
# * `aurora-mysql` (for MySQL 5.7-compatible
|
2802
|
+
# * `aurora-mysql` (for MySQL 5.7-compatible and MySQL 8.0-compatible
|
2803
|
+
# Aurora)
|
2800
2804
|
#
|
2801
2805
|
# * `aurora-postgresql`
|
2802
2806
|
#
|
@@ -3083,7 +3087,7 @@ module Aws::RDS
|
|
3083
3087
|
#
|
3084
3088
|
# ^
|
3085
3089
|
#
|
3086
|
-
# **Amazon RDS Custom**
|
3090
|
+
# **Amazon RDS Custom for Oracle**
|
3087
3091
|
#
|
3088
3092
|
# The Oracle System ID (SID) of the created RDS Custom DB instance. If
|
3089
3093
|
# you don't specify a value, the default value is `ORCL`.
|
@@ -3098,6 +3102,10 @@ module Aws::RDS
|
|
3098
3102
|
#
|
3099
3103
|
# * It can't be a word reserved by the database engine.
|
3100
3104
|
#
|
3105
|
+
# **Amazon RDS Custom for SQL Server**
|
3106
|
+
#
|
3107
|
+
# Not applicable. Must be null.
|
3108
|
+
#
|
3101
3109
|
# **SQL Server**
|
3102
3110
|
#
|
3103
3111
|
# Not applicable. Must be null.
|
@@ -3165,10 +3173,12 @@ module Aws::RDS
|
|
3165
3173
|
# following:
|
3166
3174
|
#
|
3167
3175
|
# * General Purpose (SSD) storage (gp2): Must be an integer from 40 to
|
3168
|
-
# 65536
|
3176
|
+
# 65536 for RDS Custom for Oracle, 16384 for RDS Custom for SQL
|
3177
|
+
# Server.
|
3169
3178
|
#
|
3170
3179
|
# * Provisioned IOPS storage (io1): Must be an integer from 40 to
|
3171
|
-
# 65536
|
3180
|
+
# 65536 for RDS Custom for Oracle, 16384 for RDS Custom for SQL
|
3181
|
+
# Server.
|
3172
3182
|
#
|
3173
3183
|
# **MySQL**
|
3174
3184
|
#
|
@@ -3229,21 +3239,21 @@ module Aws::RDS
|
|
3229
3239
|
#
|
3230
3240
|
# * General Purpose (SSD) storage (gp2):
|
3231
3241
|
#
|
3232
|
-
# * Enterprise and Standard editions: Must be an integer from
|
3242
|
+
# * Enterprise and Standard editions: Must be an integer from 20 to
|
3233
3243
|
# 16384.
|
3234
3244
|
#
|
3235
3245
|
# * Web and Express editions: Must be an integer from 20 to 16384.
|
3236
3246
|
#
|
3237
3247
|
# * Provisioned IOPS storage (io1):
|
3238
3248
|
#
|
3239
|
-
# * Enterprise and Standard editions: Must be an integer from
|
3249
|
+
# * Enterprise and Standard editions: Must be an integer from 100 to
|
3240
3250
|
# 16384.
|
3241
3251
|
#
|
3242
3252
|
# * Web and Express editions: Must be an integer from 100 to 16384.
|
3243
3253
|
#
|
3244
3254
|
# * Magnetic storage (standard):
|
3245
3255
|
#
|
3246
|
-
# * Enterprise and Standard editions: Must be an integer from
|
3256
|
+
# * Enterprise and Standard editions: Must be an integer from 20 to
|
3247
3257
|
# 1024.
|
3248
3258
|
#
|
3249
3259
|
# * Web and Express editions: Must be an integer from 20 to 1024.
|
@@ -3271,11 +3281,18 @@ module Aws::RDS
|
|
3271
3281
|
#
|
3272
3282
|
# * `aurora` (for MySQL 5.6-compatible Aurora)
|
3273
3283
|
#
|
3274
|
-
# * `aurora-mysql` (for MySQL 5.7-compatible
|
3284
|
+
# * `aurora-mysql` (for MySQL 5.7-compatible and MySQL 8.0-compatible
|
3285
|
+
# Aurora)
|
3275
3286
|
#
|
3276
3287
|
# * `aurora-postgresql`
|
3277
3288
|
#
|
3278
|
-
# * `custom-oracle-ee (for RDS Custom instances)`
|
3289
|
+
# * `custom-oracle-ee (for RDS Custom for Oracle instances)`
|
3290
|
+
#
|
3291
|
+
# * `custom-sqlserver-ee (for RDS Custom for SQL Server instances)`
|
3292
|
+
#
|
3293
|
+
# * `custom-sqlserver-se (for RDS Custom for SQL Server instances)`
|
3294
|
+
#
|
3295
|
+
# * `custom-sqlserver-web (for RDS Custom for SQL Server instances)`
|
3279
3296
|
#
|
3280
3297
|
# * `mariadb`
|
3281
3298
|
#
|
@@ -3375,6 +3392,10 @@ module Aws::RDS
|
|
3375
3392
|
# information on Amazon Web Services Regions and Availability Zones,
|
3376
3393
|
# see [Regions and Availability Zones][1].
|
3377
3394
|
#
|
3395
|
+
# **Amazon Aurora**
|
3396
|
+
#
|
3397
|
+
# Not applicable. Availability Zones are managed by the DB cluster.
|
3398
|
+
#
|
3378
3399
|
# Default: A random, system-chosen Availability Zone in the
|
3379
3400
|
# endpoint's Amazon Web Services Region.
|
3380
3401
|
#
|
@@ -3460,7 +3481,7 @@ module Aws::RDS
|
|
3460
3481
|
#
|
3461
3482
|
# * Can't be set to 0 if the DB instance is a source to read replicas
|
3462
3483
|
#
|
3463
|
-
# * Can't be set to 0 or 35 for an RDS Custom DB instance
|
3484
|
+
# * Can't be set to 0 or 35 for an RDS Custom for Oracle DB instance
|
3464
3485
|
# @return [Integer]
|
3465
3486
|
#
|
3466
3487
|
# @!attribute [rw] preferred_backup_window
|
@@ -3564,47 +3585,53 @@ module Aws::RDS
|
|
3564
3585
|
# Not applicable. The version number of the database engine to be used
|
3565
3586
|
# by the DB instance is managed by the DB cluster.
|
3566
3587
|
#
|
3567
|
-
# **Amazon RDS Custom**
|
3588
|
+
# **Amazon RDS Custom for Oracle**
|
3568
3589
|
#
|
3569
3590
|
# A custom engine version (CEV) that you have previously created. This
|
3570
|
-
# setting is required for RDS Custom. The CEV name has the
|
3571
|
-
# format: `19.customized_string `. An example identifier is
|
3572
|
-
# `19.my_cev1`. For more information, see [ Creating an RDS Custom
|
3573
|
-
# instance][1] in the *Amazon RDS User Guide.*.
|
3591
|
+
# setting is required for RDS Custom for Oracle. The CEV name has the
|
3592
|
+
# following format: `19.customized_string `. An example identifier is
|
3593
|
+
# `19.my_cev1`. For more information, see [ Creating an RDS Custom for
|
3594
|
+
# Oracle DB instance][1] in the *Amazon RDS User Guide.*.
|
3595
|
+
#
|
3596
|
+
# **Amazon RDS Custom for SQL Server**
|
3597
|
+
#
|
3598
|
+
# See [RDS Custom for SQL Server general requirements][2] in the
|
3599
|
+
# *Amazon RDS User Guide.*
|
3574
3600
|
#
|
3575
3601
|
# **MariaDB**
|
3576
3602
|
#
|
3577
|
-
# For information, see [MariaDB on Amazon RDS Versions][
|
3603
|
+
# For information, see [MariaDB on Amazon RDS Versions][3] in the
|
3578
3604
|
# *Amazon RDS User Guide.*
|
3579
3605
|
#
|
3580
3606
|
# **Microsoft SQL Server**
|
3581
3607
|
#
|
3582
3608
|
# For information, see [Microsoft SQL Server Versions on Amazon
|
3583
|
-
# RDS][
|
3609
|
+
# RDS][4] in the *Amazon RDS User Guide.*
|
3584
3610
|
#
|
3585
3611
|
# **MySQL**
|
3586
3612
|
#
|
3587
|
-
# For information, see [MySQL on Amazon RDS Versions][
|
3613
|
+
# For information, see [MySQL on Amazon RDS Versions][5] in the
|
3588
3614
|
# *Amazon RDS User Guide.*
|
3589
3615
|
#
|
3590
3616
|
# **Oracle**
|
3591
3617
|
#
|
3592
|
-
# For information, see [Oracle Database Engine Release Notes][
|
3618
|
+
# For information, see [Oracle Database Engine Release Notes][6] in
|
3593
3619
|
# the *Amazon RDS User Guide.*
|
3594
3620
|
#
|
3595
3621
|
# **PostgreSQL**
|
3596
3622
|
#
|
3597
3623
|
# For information, see [Amazon RDS for PostgreSQL versions and
|
3598
|
-
# extensions][
|
3624
|
+
# extensions][7] in the *Amazon RDS User Guide.*
|
3599
3625
|
#
|
3600
3626
|
#
|
3601
3627
|
#
|
3602
3628
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-creating.html#custom-creating.create
|
3603
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
3604
|
-
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
3605
|
-
# [4]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
3606
|
-
# [5]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
3607
|
-
# [6]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
3629
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-reqs-limits.html#custom-reqs-limits.reqsMS
|
3630
|
+
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_MariaDB.html#MariaDB.Concepts.VersionMgmt
|
3631
|
+
# [4]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.VersionSupport
|
3632
|
+
# [5]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_MySQL.html#MySQL.Concepts.VersionMgmt
|
3633
|
+
# [6]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Appendix.Oracle.PatchComposition.html
|
3634
|
+
# [7]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_PostgreSQL.html#PostgreSQL.Concepts
|
3608
3635
|
# @return [String]
|
3609
3636
|
#
|
3610
3637
|
# @!attribute [rw] auto_minor_version_upgrade
|
@@ -3748,9 +3775,9 @@ module Aws::RDS
|
|
3748
3775
|
# A value that indicates whether the DB instance is encrypted. By
|
3749
3776
|
# default, it isn't encrypted.
|
3750
3777
|
#
|
3751
|
-
# For RDS Custom
|
3752
|
-
#
|
3753
|
-
#
|
3778
|
+
# For RDS Custom instances, either set this parameter to `true` or
|
3779
|
+
# leave it unset. If you set this parameter to `false`, RDS reports an
|
3780
|
+
# error.
|
3754
3781
|
#
|
3755
3782
|
# **Amazon Aurora**
|
3756
3783
|
#
|
@@ -3781,11 +3808,11 @@ module Aws::RDS
|
|
3781
3808
|
#
|
3782
3809
|
# **Amazon RDS Custom**
|
3783
3810
|
#
|
3784
|
-
# A KMS key is required for RDS Custom
|
3811
|
+
# A KMS key is required for RDS Custom instances. For most RDS
|
3785
3812
|
# engines, if you leave this parameter empty while enabling
|
3786
3813
|
# `StorageEncrypted`, the engine uses the default KMS key. However,
|
3787
|
-
# RDS Custom
|
3788
|
-
#
|
3814
|
+
# RDS Custom doesn't use the default key when this parameter is
|
3815
|
+
# empty. You must explicitly specify a key.
|
3789
3816
|
# @return [String]
|
3790
3817
|
#
|
3791
3818
|
# @!attribute [rw] domain
|
@@ -4851,7 +4878,8 @@ module Aws::RDS
|
|
4851
4878
|
#
|
4852
4879
|
# * `aurora` (for MySQL 5.6-compatible Aurora)
|
4853
4880
|
#
|
4854
|
-
# * `aurora-mysql` (for MySQL 5.7-compatible
|
4881
|
+
# * `aurora-mysql` (for MySQL 5.7-compatible and MySQL 8.0-compatible
|
4882
|
+
# Aurora)
|
4855
4883
|
#
|
4856
4884
|
# * `aurora-postgresql`
|
4857
4885
|
#
|
@@ -6096,7 +6124,7 @@ module Aws::RDS
|
|
6096
6124
|
# @return [String]
|
6097
6125
|
#
|
6098
6126
|
# @!attribute [rw] storage_type
|
6099
|
-
# The storage type associated with DB
|
6127
|
+
# The storage type associated with the DB cluster.
|
6100
6128
|
#
|
6101
6129
|
# This setting is only for non-Aurora Multi-AZ DB clusters.
|
6102
6130
|
# @return [String]
|
@@ -6790,7 +6818,14 @@ module Aws::RDS
|
|
6790
6818
|
# @return [Integer]
|
6791
6819
|
#
|
6792
6820
|
# @!attribute [rw] status
|
6793
|
-
# Specifies the status of this DB cluster snapshot.
|
6821
|
+
# Specifies the status of this DB cluster snapshot. Valid statuses are
|
6822
|
+
# the following:
|
6823
|
+
#
|
6824
|
+
# * `available`
|
6825
|
+
#
|
6826
|
+
# * `copying`
|
6827
|
+
#
|
6828
|
+
# * `creating`
|
6794
6829
|
# @return [String]
|
6795
6830
|
#
|
6796
6831
|
# @!attribute [rw] port
|
@@ -10676,7 +10711,8 @@ module Aws::RDS
|
|
10676
10711
|
#
|
10677
10712
|
# * `aurora` (for MySQL 5.6-compatible Aurora)
|
10678
10713
|
#
|
10679
|
-
# * `aurora-mysql` (for MySQL 5.7-compatible
|
10714
|
+
# * `aurora-mysql` (for MySQL 5.7-compatible and MySQL 8.0-compatible
|
10715
|
+
# Aurora)
|
10680
10716
|
#
|
10681
10717
|
# * `aurora-postgresql`
|
10682
10718
|
#
|
@@ -12583,7 +12619,8 @@ module Aws::RDS
|
|
12583
12619
|
#
|
12584
12620
|
# * `aurora` (for MySQL 5.6-compatible Aurora)
|
12585
12621
|
#
|
12586
|
-
# * `aurora-mysql` (for MySQL 5.7-compatible
|
12622
|
+
# * `aurora-mysql` (for MySQL 5.7-compatible and MySQL 8.0-compatible
|
12623
|
+
# Aurora)
|
12587
12624
|
#
|
12588
12625
|
# * `aurora-postgresql`
|
12589
12626
|
#
|
@@ -14633,9 +14670,9 @@ module Aws::RDS
|
|
14633
14670
|
#
|
14634
14671
|
# @!attribute [rw] engine_version
|
14635
14672
|
# The custom engine version (CEV) that you want to modify. This option
|
14636
|
-
# is required for RDS Custom, but optional for Amazon RDS.
|
14637
|
-
# combination of `Engine` and `EngineVersion` is unique per
|
14638
|
-
# per Amazon Web Services Region.
|
14673
|
+
# is required for RDS Custom for Oracle, but optional for Amazon RDS.
|
14674
|
+
# The combination of `Engine` and `EngineVersion` is unique per
|
14675
|
+
# customer per Amazon Web Services Region.
|
14639
14676
|
# @return [String]
|
14640
14677
|
#
|
14641
14678
|
# @!attribute [rw] description
|
@@ -14973,7 +15010,8 @@ module Aws::RDS
|
|
14973
15010
|
# "DBEngineVersions[].EngineVersion"`
|
14974
15011
|
#
|
14975
15012
|
# To list all of the available engine versions for MySQL
|
14976
|
-
# 5.7-compatible Aurora, use the following
|
15013
|
+
# 5.7-compatible and MySQL 8.0-compatible Aurora, use the following
|
15014
|
+
# command:
|
14977
15015
|
#
|
14978
15016
|
# `aws rds describe-db-engine-versions --engine aurora-mysql --query
|
14979
15017
|
# "DBEngineVersions[].EngineVersion"`
|
@@ -15145,12 +15183,11 @@ module Aws::RDS
|
|
15145
15183
|
# @!attribute [rw] storage_type
|
15146
15184
|
# Specifies the storage type to be associated with the DB cluster.
|
15147
15185
|
#
|
15148
|
-
# Valid values: `
|
15186
|
+
# Valid values: `io1`
|
15149
15187
|
#
|
15150
|
-
#
|
15151
|
-
# parameter.
|
15188
|
+
# When specified, a value for the `Iops` parameter is required.
|
15152
15189
|
#
|
15153
|
-
# Default: `io1`
|
15190
|
+
# Default: `io1`
|
15154
15191
|
#
|
15155
15192
|
# Valid for: Multi-AZ DB clusters only
|
15156
15193
|
# @return [String]
|
@@ -15569,7 +15606,7 @@ module Aws::RDS
|
|
15569
15606
|
# change. The change is applied during the next maintenance window,
|
15570
15607
|
# unless `ApplyImmediately` is enabled for this request.
|
15571
15608
|
#
|
15572
|
-
# This setting doesn't apply to RDS Custom.
|
15609
|
+
# This setting doesn't apply to RDS Custom for Oracle.
|
15573
15610
|
#
|
15574
15611
|
# Default: Uses existing setting
|
15575
15612
|
#
|
@@ -15645,9 +15682,9 @@ module Aws::RDS
|
|
15645
15682
|
# can cause an outage and are applied on the next call to
|
15646
15683
|
# RebootDBInstance, or the next failure reboot. Review the table of
|
15647
15684
|
# parameters in [Modifying a DB Instance][1] in the *Amazon RDS User
|
15648
|
-
# Guide
|
15649
|
-
#
|
15650
|
-
#
|
15685
|
+
# Guide* to see the impact of enabling or disabling `ApplyImmediately`
|
15686
|
+
# for each modified parameter and to determine when the changes are
|
15687
|
+
# applied.
|
15651
15688
|
#
|
15652
15689
|
#
|
15653
15690
|
#
|
@@ -15749,7 +15786,7 @@ module Aws::RDS
|
|
15749
15786
|
#
|
15750
15787
|
# * It must be a value from 0 to 35. It can't be set to 0 if the DB
|
15751
15788
|
# instance is a source to read replicas. It can't be set to 0 or 35
|
15752
|
-
# for an RDS Custom DB instance.
|
15789
|
+
# for an RDS Custom for Oracle DB instance.
|
15753
15790
|
#
|
15754
15791
|
# * It can be specified for a MySQL read replica only if the source is
|
15755
15792
|
# running MySQL 5.6 or later.
|
@@ -15842,8 +15879,8 @@ module Aws::RDS
|
|
15842
15879
|
# is lower. For information about valid engine versions, see
|
15843
15880
|
# `CreateDBInstance`, or call `DescribeDBEngineVersions`.
|
15844
15881
|
#
|
15845
|
-
# In RDS Custom, this parameter is supported for read
|
15846
|
-
# they are in the `PATCH_DB_FAILURE` lifecycle.
|
15882
|
+
# In RDS Custom for Oracle, this parameter is supported for read
|
15883
|
+
# replicas only if they are in the `PATCH_DB_FAILURE` lifecycle.
|
15847
15884
|
# @return [String]
|
15848
15885
|
#
|
15849
15886
|
# @!attribute [rw] allow_major_version_upgrade
|
@@ -16124,8 +16161,6 @@ module Aws::RDS
|
|
16124
16161
|
# Changes to the `PubliclyAccessible` parameter are applied
|
16125
16162
|
# immediately regardless of the value of the `ApplyImmediately`
|
16126
16163
|
# parameter.
|
16127
|
-
#
|
16128
|
-
# This setting doesn't apply to RDS Custom.
|
16129
16164
|
# @return [Boolean]
|
16130
16165
|
#
|
16131
16166
|
# @!attribute [rw] monitoring_role_arn
|
@@ -16484,25 +16519,35 @@ module Aws::RDS
|
|
16484
16519
|
# @!attribute [rw] parameters
|
16485
16520
|
# An array of parameter names, values, and the application methods for
|
16486
16521
|
# the parameter update. At least one parameter name, value, and
|
16487
|
-
# application method
|
16488
|
-
#
|
16489
|
-
# request.
|
16522
|
+
# application method must be supplied; later arguments are optional. A
|
16523
|
+
# maximum of 20 parameters can be modified in a single request.
|
16490
16524
|
#
|
16491
16525
|
# Valid Values (for the application method): `immediate |
|
16492
16526
|
# pending-reboot`
|
16493
16527
|
#
|
16494
|
-
#
|
16528
|
+
# You can use the `immediate` value with dynamic parameters only. You
|
16495
16529
|
# can use the `pending-reboot` value for both dynamic and static
|
16496
16530
|
# parameters.
|
16497
16531
|
#
|
16498
|
-
#
|
16532
|
+
# When the application method is `immediate`, changes to dynamic
|
16499
16533
|
# parameters are applied immediately to the DB instances associated
|
16500
|
-
# with the parameter group.
|
16501
|
-
#
|
16502
|
-
#
|
16503
|
-
#
|
16534
|
+
# with the parameter group.
|
16535
|
+
#
|
16536
|
+
# When the application method is `pending-reboot`, changes to dynamic
|
16537
|
+
# and static parameters are applied after a reboot without failover to
|
16538
|
+
# the DB instances associated with the parameter group.
|
16539
|
+
#
|
16540
|
+
# <note markdown="1"> You can't use `pending-reboot` with dynamic parameters on RDS for
|
16541
|
+
# SQL Server DB instances. Use `immediate`.
|
16504
16542
|
#
|
16505
16543
|
# </note>
|
16544
|
+
#
|
16545
|
+
# For more information on modifying DB parameters, see [Working with
|
16546
|
+
# DB parameter groups][1] in the *Amazon RDS User Guide*.
|
16547
|
+
#
|
16548
|
+
#
|
16549
|
+
#
|
16550
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_WorkingWithParamGroups.html
|
16506
16551
|
# @return [Array<Types::Parameter>]
|
16507
16552
|
#
|
16508
16553
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBParameterGroupMessage AWS API Documentation
|
@@ -17061,7 +17106,8 @@ module Aws::RDS
|
|
17061
17106
|
# '*[]|[?SupportsGlobalDatabases == `true`].[EngineVersion]' ``
|
17062
17107
|
#
|
17063
17108
|
# To list all of the available engine versions for `aurora-mysql` (for
|
17064
|
-
# MySQL 5.7-compatible Aurora), use the
|
17109
|
+
# MySQL 5.7-compatible and MySQL 8.0-compatible Aurora), use the
|
17110
|
+
# following command:
|
17065
17111
|
#
|
17066
17112
|
# `` aws rds describe-db-engine-versions --engine aurora-mysql --query
|
17067
17113
|
# '*[]|[?SupportsGlobalDatabases == `true`].[EngineVersion]' ``
|
@@ -19453,8 +19499,8 @@ module Aws::RDS
|
|
19453
19499
|
# The name of the database engine to be used for this DB cluster.
|
19454
19500
|
#
|
19455
19501
|
# Valid Values: `aurora` (for MySQL 5.6-compatible Aurora),
|
19456
|
-
# `aurora-mysql` (for MySQL 5.7-compatible
|
19457
|
-
# `aurora-postgresql`
|
19502
|
+
# `aurora-mysql` (for MySQL 5.7-compatible and MySQL 8.0-compatible
|
19503
|
+
# Aurora), and `aurora-postgresql`
|
19458
19504
|
# @return [String]
|
19459
19505
|
#
|
19460
19506
|
# @!attribute [rw] engine_version
|
@@ -19467,7 +19513,8 @@ module Aws::RDS
|
|
19467
19513
|
# "DBEngineVersions[].EngineVersion"`
|
19468
19514
|
#
|
19469
19515
|
# To list all of the available engine versions for `aurora-mysql` (for
|
19470
|
-
# MySQL 5.7-compatible Aurora), use the
|
19516
|
+
# MySQL 5.7-compatible and MySQL 8.0-compatible Aurora), use the
|
19517
|
+
# following command:
|
19471
19518
|
#
|
19472
19519
|
# `aws rds describe-db-engine-versions --engine aurora-mysql --query
|
19473
19520
|
# "DBEngineVersions[].EngineVersion"`
|
@@ -19481,7 +19528,7 @@ module Aws::RDS
|
|
19481
19528
|
# **Aurora MySQL**
|
19482
19529
|
#
|
19483
19530
|
# Example: `5.6.10a`, `5.6.mysql_aurora.1.19.2`, `5.7.12`,
|
19484
|
-
# `5.7.mysql_aurora.2.04.5`
|
19531
|
+
# `5.7.mysql_aurora.2.04.5`, `8.0.mysql_aurora.3.01.0`
|
19485
19532
|
#
|
19486
19533
|
# **Aurora PostgreSQL**
|
19487
19534
|
#
|
@@ -19892,7 +19939,8 @@ module Aws::RDS
|
|
19892
19939
|
# "DBEngineVersions[].EngineVersion"`
|
19893
19940
|
#
|
19894
19941
|
# To list all of the available engine versions for MySQL
|
19895
|
-
# 5.7-compatible Aurora, use the following
|
19942
|
+
# 5.7-compatible and MySQL 8.0-compatible Aurora, use the following
|
19943
|
+
# command:
|
19896
19944
|
#
|
19897
19945
|
# `aws rds describe-db-engine-versions --engine aurora-mysql --query
|
19898
19946
|
# "DBEngineVersions[].EngineVersion"`
|
@@ -20164,12 +20212,11 @@ module Aws::RDS
|
|
20164
20212
|
# Specifies the storage type to be associated with the each DB
|
20165
20213
|
# instance in the Multi-AZ DB cluster.
|
20166
20214
|
#
|
20167
|
-
# Valid values: `
|
20215
|
+
# Valid values: `io1`
|
20168
20216
|
#
|
20169
|
-
#
|
20170
|
-
# parameter.
|
20217
|
+
# When specified, a value for the `Iops` parameter is required.
|
20171
20218
|
#
|
20172
|
-
# Default: `io1`
|
20219
|
+
# Default: `io1`
|
20173
20220
|
#
|
20174
20221
|
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
20175
20222
|
# @return [String]
|
@@ -20649,11 +20696,11 @@ module Aws::RDS
|
|
20649
20696
|
# Specifies the storage type to be associated with the each DB
|
20650
20697
|
# instance in the Multi-AZ DB cluster.
|
20651
20698
|
#
|
20652
|
-
# Valid values: `
|
20699
|
+
# Valid values: `io1`
|
20653
20700
|
#
|
20654
|
-
#
|
20701
|
+
# When specified, a value for the `Iops` parameter is required.
|
20655
20702
|
#
|
20656
|
-
# Default: `io1`
|
20703
|
+
# Default: `io1`
|
20657
20704
|
#
|
20658
20705
|
# Valid for: Multi-AZ DB clusters only
|
20659
20706
|
# @return [String]
|
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.135.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:
|
11
|
+
date: 2022-01-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sigv4
|