aws-sdk-rds 1.205.0 → 1.207.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +294 -198
- data/lib/aws-sdk-rds/db_instance.rb +158 -93
- data/lib/aws-sdk-rds/db_parameter_group.rb +3 -1
- data/lib/aws-sdk-rds/db_snapshot.rb +28 -20
- data/lib/aws-sdk-rds/option_group.rb +5 -2
- data/lib/aws-sdk-rds/resource.rb +145 -88
- data/lib/aws-sdk-rds/types.rb +252 -155
- data/lib/aws-sdk-rds.rb +1 -1
- metadata +5 -5
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -3128,117 +3128,133 @@ module Aws::RDS
|
|
3128
3128
|
# The meaning of this parameter differs according to the database
|
3129
3129
|
# engine you use.
|
3130
3130
|
#
|
3131
|
-
#
|
3131
|
+
# Amazon Aurora MySQL
|
3132
3132
|
#
|
3133
|
-
# The name of the database to create when the DB instance
|
3134
|
-
#
|
3135
|
-
#
|
3133
|
+
# : The name of the database to create when the primary DB instance of
|
3134
|
+
# the Aurora MySQL DB cluster is created. If this parameter isn't
|
3135
|
+
# specified for an Aurora MySQL DB cluster, no database is created
|
3136
|
+
# in the DB cluster.
|
3136
3137
|
#
|
3137
|
-
#
|
3138
|
+
# Constraints:
|
3138
3139
|
#
|
3139
|
-
#
|
3140
|
+
# * Must contain 1 to 64 alphanumeric characters.
|
3140
3141
|
#
|
3141
|
-
#
|
3142
|
-
# underscores, or digits (0-9).
|
3142
|
+
# * Can't be a word reserved by the database engine.
|
3143
3143
|
#
|
3144
|
-
#
|
3144
|
+
# Amazon Aurora PostgreSQL
|
3145
3145
|
#
|
3146
|
-
#
|
3146
|
+
# : The name of the database to create when the primary DB instance of
|
3147
|
+
# the Aurora PostgreSQL DB cluster is created. If this parameter
|
3148
|
+
# isn't specified for an Aurora PostgreSQL DB cluster, a database
|
3149
|
+
# named `postgres` is created in the DB cluster.
|
3147
3150
|
#
|
3148
|
-
#
|
3149
|
-
# If this parameter isn't specified, no database is created in the DB
|
3150
|
-
# instance.
|
3151
|
+
# Constraints:
|
3151
3152
|
#
|
3152
|
-
#
|
3153
|
+
# * It must contain 1 to 63 alphanumeric characters.
|
3153
3154
|
#
|
3154
|
-
#
|
3155
|
+
# * Must begin with a letter. Subsequent characters can be letters,
|
3156
|
+
# underscores, or digits (0 to 9).
|
3155
3157
|
#
|
3156
|
-
#
|
3157
|
-
# underscores, or digits (0-9).
|
3158
|
+
# * Can't be a word reserved by the database engine.
|
3158
3159
|
#
|
3159
|
-
#
|
3160
|
+
# Amazon RDS Custom for Oracle
|
3160
3161
|
#
|
3161
|
-
#
|
3162
|
+
# : The Oracle System ID (SID) of the created RDS Custom DB instance.
|
3163
|
+
# If you don't specify a value, the default value is `ORCL` for
|
3164
|
+
# non-CDBs and `RDSCDB` for CDBs.
|
3162
3165
|
#
|
3163
|
-
#
|
3164
|
-
# If this parameter isn't specified, a database named `postgres` is
|
3165
|
-
# created in the DB instance.
|
3166
|
+
# Default: `ORCL`
|
3166
3167
|
#
|
3167
|
-
#
|
3168
|
+
# Constraints:
|
3168
3169
|
#
|
3169
|
-
#
|
3170
|
+
# * Must contain 1 to 8 alphanumeric characters.
|
3170
3171
|
#
|
3171
|
-
#
|
3172
|
-
# underscores, or digits (0-9).
|
3172
|
+
# * Must contain a letter.
|
3173
3173
|
#
|
3174
|
-
#
|
3174
|
+
# * Can't be a word reserved by the database engine.
|
3175
3175
|
#
|
3176
|
-
#
|
3176
|
+
# Amazon RDS Custom for SQL Server
|
3177
3177
|
#
|
3178
|
-
#
|
3179
|
-
# specify a value, the default value is `ORCL`. You can't specify the
|
3180
|
-
# string `null`, or any other reserved word, for `DBName`.
|
3178
|
+
# : Not applicable. Must be null.
|
3181
3179
|
#
|
3182
|
-
#
|
3180
|
+
# RDS for Db2
|
3183
3181
|
#
|
3184
|
-
#
|
3182
|
+
# : The name of the database to create when the DB instance is
|
3183
|
+
# created. If this parameter isn't specified, no database is
|
3184
|
+
# created in the DB instance.
|
3185
3185
|
#
|
3186
|
-
#
|
3186
|
+
# Constraints:
|
3187
3187
|
#
|
3188
|
-
#
|
3188
|
+
# * Must contain 1 to 64 letters or numbers.
|
3189
3189
|
#
|
3190
|
-
#
|
3190
|
+
# * Must begin with a letter. Subsequent characters can be letters,
|
3191
|
+
# underscores, or digits (0-9).
|
3191
3192
|
#
|
3192
|
-
#
|
3193
|
-
# you don't specify a value, the default value is `ORCL` for non-CDBs
|
3194
|
-
# and `RDSCDB` for CDBs.
|
3193
|
+
# * Can't be a word reserved by the specified database engine.
|
3195
3194
|
#
|
3196
|
-
#
|
3195
|
+
# RDS for MariaDB
|
3197
3196
|
#
|
3198
|
-
#
|
3197
|
+
# : The name of the database to create when the DB instance is
|
3198
|
+
# created. If this parameter isn't specified, no database is
|
3199
|
+
# created in the DB instance.
|
3199
3200
|
#
|
3200
|
-
#
|
3201
|
+
# Constraints:
|
3201
3202
|
#
|
3202
|
-
#
|
3203
|
+
# * Must contain 1 to 64 letters or numbers.
|
3203
3204
|
#
|
3204
|
-
#
|
3205
|
+
# * Must begin with a letter. Subsequent characters can be letters,
|
3206
|
+
# underscores, or digits (0-9).
|
3205
3207
|
#
|
3206
|
-
#
|
3208
|
+
# * Can't be a word reserved by the specified database engine.
|
3207
3209
|
#
|
3208
|
-
#
|
3210
|
+
# RDS for MySQL
|
3209
3211
|
#
|
3210
|
-
#
|
3212
|
+
# : The name of the database to create when the DB instance is
|
3213
|
+
# created. If this parameter isn't specified, no database is
|
3214
|
+
# created in the DB instance.
|
3211
3215
|
#
|
3212
|
-
#
|
3216
|
+
# Constraints:
|
3213
3217
|
#
|
3214
|
-
#
|
3218
|
+
# * Must contain 1 to 64 letters or numbers.
|
3215
3219
|
#
|
3216
|
-
#
|
3217
|
-
#
|
3218
|
-
# specified for an Aurora MySQL DB cluster, no database is created in
|
3219
|
-
# the DB cluster.
|
3220
|
+
# * Must begin with a letter. Subsequent characters can be letters,
|
3221
|
+
# underscores, or digits (0-9).
|
3220
3222
|
#
|
3221
|
-
#
|
3223
|
+
# * Can't be a word reserved by the specified database engine.
|
3222
3224
|
#
|
3223
|
-
#
|
3225
|
+
# RDS for Oracle
|
3224
3226
|
#
|
3225
|
-
#
|
3227
|
+
# : The Oracle System ID (SID) of the created DB instance. If you
|
3228
|
+
# don't specify a value, the default value is `ORCL`. You can't
|
3229
|
+
# specify the string `null`, or any other reserved word, for
|
3230
|
+
# `DBName`.
|
3226
3231
|
#
|
3227
|
-
#
|
3232
|
+
# Default: `ORCL`
|
3228
3233
|
#
|
3229
|
-
#
|
3230
|
-
# the Aurora PostgreSQL DB cluster is created. If this parameter
|
3231
|
-
# isn't specified for an Aurora PostgreSQL DB cluster, a database
|
3232
|
-
# named `postgres` is created in the DB cluster.
|
3234
|
+
# Constraints:
|
3233
3235
|
#
|
3234
|
-
#
|
3236
|
+
# * Can't be longer than 8 characters.
|
3237
|
+
#
|
3238
|
+
# ^
|
3239
|
+
#
|
3240
|
+
# RDS for PostgreSQL
|
3235
3241
|
#
|
3236
|
-
#
|
3242
|
+
# : The name of the database to create when the DB instance is
|
3243
|
+
# created. If this parameter isn't specified, a database named
|
3244
|
+
# `postgres` is created in the DB instance.
|
3237
3245
|
#
|
3238
|
-
#
|
3239
|
-
# underscores, or digits (0 to 9).
|
3246
|
+
# Constraints:
|
3240
3247
|
#
|
3241
|
-
#
|
3248
|
+
# * Must contain 1 to 63 letters, numbers, or underscores.
|
3249
|
+
#
|
3250
|
+
# * Must begin with a letter. Subsequent characters can be letters,
|
3251
|
+
# underscores, or digits (0-9).
|
3252
|
+
#
|
3253
|
+
# * Can't be a word reserved by the specified database engine.
|
3254
|
+
#
|
3255
|
+
# RDS for SQL Server
|
3256
|
+
#
|
3257
|
+
# : Not applicable. Must be null.
|
3242
3258
|
# @return [String]
|
3243
3259
|
#
|
3244
3260
|
# @!attribute [rw] db_instance_identifier
|
@@ -3278,6 +3294,17 @@ module Aws::RDS
|
|
3278
3294
|
# 65536 for RDS Custom for Oracle, 16384 for RDS Custom for SQL
|
3279
3295
|
# Server.
|
3280
3296
|
#
|
3297
|
+
# RDS for Db2
|
3298
|
+
#
|
3299
|
+
# : Constraints to the amount of storage for each storage type are the
|
3300
|
+
# following:
|
3301
|
+
#
|
3302
|
+
# * General Purpose (SSD) storage (gp2, gp3): Must be an integer
|
3303
|
+
# from 20 to 64000.
|
3304
|
+
#
|
3305
|
+
# * Provisioned IOPS storage (io1): Must be an integer from 100 to
|
3306
|
+
# 64000.
|
3307
|
+
#
|
3281
3308
|
# RDS for MariaDB
|
3282
3309
|
#
|
3283
3310
|
# : Constraints to the amount of storage for each storage type are the
|
@@ -3395,6 +3422,10 @@ module Aws::RDS
|
|
3395
3422
|
# * `custom-sqlserver-web` (for RDS Custom for SQL Server DB
|
3396
3423
|
# instances)
|
3397
3424
|
#
|
3425
|
+
# * `db2-ae`
|
3426
|
+
#
|
3427
|
+
# * `db2-se`
|
3428
|
+
#
|
3398
3429
|
# * `mariadb`
|
3399
3430
|
#
|
3400
3431
|
# * `mysql`
|
@@ -3451,6 +3482,8 @@ module Aws::RDS
|
|
3451
3482
|
#
|
3452
3483
|
# Length Constraints:
|
3453
3484
|
#
|
3485
|
+
# * RDS for Db2 - Must contain from 8 to 255 characters.
|
3486
|
+
#
|
3454
3487
|
# * RDS for MariaDB - Must contain from 8 to 41 characters.
|
3455
3488
|
#
|
3456
3489
|
# * RDS for Microsoft SQL Server - Must contain from 8 to 128
|
@@ -3622,6 +3655,8 @@ module Aws::RDS
|
|
3622
3655
|
#
|
3623
3656
|
# Default:
|
3624
3657
|
#
|
3658
|
+
# * RDS for Db2 - `50000`
|
3659
|
+
#
|
3625
3660
|
# * RDS for MariaDB - `3306`
|
3626
3661
|
#
|
3627
3662
|
# * RDS for Microsoft SQL Server - `1433`
|
@@ -3681,40 +3716,46 @@ module Aws::RDS
|
|
3681
3716
|
# : See [RDS Custom for SQL Server general requirements][2] in the
|
3682
3717
|
# *Amazon RDS User Guide*.
|
3683
3718
|
#
|
3719
|
+
# RDS for Db2
|
3720
|
+
#
|
3721
|
+
# : For information, see [Db2 on Amazon RDS versions][3] in the
|
3722
|
+
# *Amazon RDS User Guide*.
|
3723
|
+
#
|
3684
3724
|
# RDS for MariaDB
|
3685
3725
|
#
|
3686
|
-
# : For information, see [MariaDB on Amazon RDS versions][
|
3726
|
+
# : For information, see [MariaDB on Amazon RDS versions][4] in the
|
3687
3727
|
# *Amazon RDS User Guide*.
|
3688
3728
|
#
|
3689
3729
|
# RDS for Microsoft SQL Server
|
3690
3730
|
#
|
3691
3731
|
# : For information, see [Microsoft SQL Server versions on Amazon
|
3692
|
-
# RDS][
|
3732
|
+
# RDS][5] in the *Amazon RDS User Guide*.
|
3693
3733
|
#
|
3694
3734
|
# RDS for MySQL
|
3695
3735
|
#
|
3696
|
-
# : For information, see [MySQL on Amazon RDS versions][
|
3736
|
+
# : For information, see [MySQL on Amazon RDS versions][6] in the
|
3697
3737
|
# *Amazon RDS User Guide*.
|
3698
3738
|
#
|
3699
3739
|
# RDS for Oracle
|
3700
3740
|
#
|
3701
|
-
# : For information, see [Oracle Database Engine release notes][
|
3741
|
+
# : For information, see [Oracle Database Engine release notes][7] in
|
3702
3742
|
# the *Amazon RDS User Guide*.
|
3703
3743
|
#
|
3704
3744
|
# RDS for PostgreSQL
|
3705
3745
|
#
|
3706
3746
|
# : For information, see [Amazon RDS for PostgreSQL versions and
|
3707
|
-
# extensions][
|
3747
|
+
# extensions][8] in the *Amazon RDS User Guide*.
|
3708
3748
|
#
|
3709
3749
|
#
|
3710
3750
|
#
|
3711
3751
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-creating.html#custom-creating.create
|
3712
3752
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-reqs-limits-MS.html
|
3713
|
-
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
3714
|
-
# [4]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
3715
|
-
# [5]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
3716
|
-
# [6]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
3717
|
-
# [7]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
3753
|
+
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Db2.html#Db2.Concepts.VersionMgmt
|
3754
|
+
# [4]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_MariaDB.html#MariaDB.Concepts.VersionMgmt
|
3755
|
+
# [5]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.VersionSupport
|
3756
|
+
# [6]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_MySQL.html#MySQL.Concepts.VersionMgmt
|
3757
|
+
# [7]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Appendix.Oracle.PatchComposition.html
|
3758
|
+
# [8]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_PostgreSQL.html#PostgreSQL.Concepts
|
3718
3759
|
# @return [String]
|
3719
3760
|
#
|
3720
3761
|
# @!attribute [rw] auto_minor_version_upgrade
|
@@ -3734,6 +3775,8 @@ module Aws::RDS
|
|
3734
3775
|
#
|
3735
3776
|
# Valid Values:
|
3736
3777
|
#
|
3778
|
+
# * RDS for Db2 - `bring-your-own-license`
|
3779
|
+
#
|
3737
3780
|
# * RDS for MariaDB - `general-public-license`
|
3738
3781
|
#
|
3739
3782
|
# * RDS for Microsoft SQL Server - `license-included`
|
@@ -3756,8 +3799,8 @@ module Aws::RDS
|
|
3756
3799
|
#
|
3757
3800
|
# Constraints:
|
3758
3801
|
#
|
3759
|
-
# * For RDS for MariaDB, MySQL, Oracle, and PostgreSQL - Must be
|
3760
|
-
# multiple between .5 and 50 of the storage amount for the DB
|
3802
|
+
# * For RDS for Db2, MariaDB, MySQL, Oracle, and PostgreSQL - Must be
|
3803
|
+
# a multiple between .5 and 50 of the storage amount for the DB
|
3761
3804
|
# instance.
|
3762
3805
|
#
|
3763
3806
|
# * For RDS for SQL Server - Must be a multiple between 1 and 50 of
|
@@ -3915,8 +3958,8 @@ module Aws::RDS
|
|
3915
3958
|
#
|
3916
3959
|
# @!attribute [rw] domain
|
3917
3960
|
# The Active Directory directory ID to create the DB instance in.
|
3918
|
-
# Currently,
|
3919
|
-
#
|
3961
|
+
# Currently, you can create only Db2, MySQL, Microsoft SQL Server,
|
3962
|
+
# Oracle, and PostgreSQL DB instances in an Active Directory Domain.
|
3920
3963
|
#
|
3921
3964
|
# For more information, see [ Kerberos Authentication][1] in the
|
3922
3965
|
# *Amazon RDS User Guide*.
|
@@ -4130,9 +4173,9 @@ module Aws::RDS
|
|
4130
4173
|
# @return [Integer]
|
4131
4174
|
#
|
4132
4175
|
# @!attribute [rw] enable_cloudwatch_logs_exports
|
4133
|
-
# The list of log types
|
4134
|
-
#
|
4135
|
-
#
|
4176
|
+
# The list of log types to enable for exporting to CloudWatch Logs.
|
4177
|
+
# For more information, see [ Publishing Database Logs to Amazon
|
4178
|
+
# CloudWatch Logs][1] in the *Amazon RDS User Guide*.
|
4136
4179
|
#
|
4137
4180
|
# This setting doesn't apply to the following DB instances:
|
4138
4181
|
#
|
@@ -4143,6 +4186,8 @@ module Aws::RDS
|
|
4143
4186
|
#
|
4144
4187
|
# The following values are valid for each DB engine:
|
4145
4188
|
#
|
4189
|
+
# * RDS for Db2 - `diag.log | notify.log`
|
4190
|
+
#
|
4146
4191
|
# * RDS for MariaDB - `audit | error | general | slowquery`
|
4147
4192
|
#
|
4148
4193
|
# * RDS for Microsoft SQL Server - `agent | error`
|
@@ -4252,7 +4297,7 @@ module Aws::RDS
|
|
4252
4297
|
# @!attribute [rw] backup_target
|
4253
4298
|
# The location for storing automated backups and manual snapshots.
|
4254
4299
|
#
|
4255
|
-
#
|
4300
|
+
# Valid Values:
|
4256
4301
|
#
|
4257
4302
|
# * `outposts` (Amazon Web Services Outposts)
|
4258
4303
|
#
|
@@ -4468,7 +4513,7 @@ module Aws::RDS
|
|
4468
4513
|
#
|
4469
4514
|
# Constraints:
|
4470
4515
|
#
|
4471
|
-
# * Must be the identifier of an existing
|
4516
|
+
# * Must be the identifier of an existing Db2, MariaDB, MySQL, Oracle,
|
4472
4517
|
# PostgreSQL, or SQL Server DB instance.
|
4473
4518
|
#
|
4474
4519
|
# * Can't be specified if the `SourceDBClusterIdentifier` parameter
|
@@ -5290,7 +5335,9 @@ module Aws::RDS
|
|
5290
5335
|
#
|
5291
5336
|
# * `aurora-postgresql`
|
5292
5337
|
#
|
5293
|
-
# * `
|
5338
|
+
# * `db2-ae`
|
5339
|
+
#
|
5340
|
+
# * `db2-se`
|
5294
5341
|
#
|
5295
5342
|
# * `mysql`
|
5296
5343
|
#
|
@@ -5961,11 +6008,14 @@ module Aws::RDS
|
|
5961
6008
|
# @return [String]
|
5962
6009
|
#
|
5963
6010
|
# @!attribute [rw] engine_name
|
5964
|
-
#
|
5965
|
-
# associated with.
|
6011
|
+
# The name of the engine to associate this option group with.
|
5966
6012
|
#
|
5967
6013
|
# Valid Values:
|
5968
6014
|
#
|
6015
|
+
# * `db2-ae`
|
6016
|
+
#
|
6017
|
+
# * `db2-se`
|
6018
|
+
#
|
5969
6019
|
# * `mariadb`
|
5970
6020
|
#
|
5971
6021
|
# * `mysql`
|
@@ -9174,7 +9224,7 @@ module Aws::RDS
|
|
9174
9224
|
end
|
9175
9225
|
|
9176
9226
|
# Contains the result of a successful invocation of the
|
9177
|
-
# `ModifyDBParameterGroup` or `ResetDBParameterGroup`
|
9227
|
+
# `ModifyDBParameterGroup` or `ResetDBParameterGroup` operation.
|
9178
9228
|
#
|
9179
9229
|
# @!attribute [rw] db_parameter_group_name
|
9180
9230
|
# The name of the DB parameter group.
|
@@ -11743,6 +11793,10 @@ module Aws::RDS
|
|
11743
11793
|
#
|
11744
11794
|
# * `custom-oracle-ee`
|
11745
11795
|
#
|
11796
|
+
# * `db2-ae`
|
11797
|
+
#
|
11798
|
+
# * `db2-se`
|
11799
|
+
#
|
11746
11800
|
# * `mariadb`
|
11747
11801
|
#
|
11748
11802
|
# * `mysql`
|
@@ -12895,6 +12949,10 @@ module Aws::RDS
|
|
12895
12949
|
#
|
12896
12950
|
# * `custom-oracle-ee-19`
|
12897
12951
|
#
|
12952
|
+
# * `db2-ae`
|
12953
|
+
#
|
12954
|
+
# * `db2-se`
|
12955
|
+
#
|
12898
12956
|
# * `mariadb10.2`
|
12899
12957
|
#
|
12900
12958
|
# * `mariadb10.3`
|
@@ -13367,11 +13425,14 @@ module Aws::RDS
|
|
13367
13425
|
end
|
13368
13426
|
|
13369
13427
|
# @!attribute [rw] engine_name
|
13370
|
-
#
|
13371
|
-
# are described.
|
13428
|
+
# The name of the engine to describe options for.
|
13372
13429
|
#
|
13373
13430
|
# Valid Values:
|
13374
13431
|
#
|
13432
|
+
# * `db2-ae`
|
13433
|
+
#
|
13434
|
+
# * `db2-se`
|
13435
|
+
#
|
13375
13436
|
# * `mariadb`
|
13376
13437
|
#
|
13377
13438
|
# * `mysql`
|
@@ -13461,11 +13522,15 @@ module Aws::RDS
|
|
13461
13522
|
# @return [Integer]
|
13462
13523
|
#
|
13463
13524
|
# @!attribute [rw] engine_name
|
13464
|
-
#
|
13465
|
-
#
|
13525
|
+
# A filter to only include option groups associated with this database
|
13526
|
+
# engine.
|
13466
13527
|
#
|
13467
13528
|
# Valid Values:
|
13468
13529
|
#
|
13530
|
+
# * `db2-ae`
|
13531
|
+
#
|
13532
|
+
# * `db2-se`
|
13533
|
+
#
|
13469
13534
|
# * `mariadb`
|
13470
13535
|
#
|
13471
13536
|
# * `mysql`
|
@@ -13509,7 +13574,7 @@ module Aws::RDS
|
|
13509
13574
|
end
|
13510
13575
|
|
13511
13576
|
# @!attribute [rw] engine
|
13512
|
-
# The name of the engine to
|
13577
|
+
# The name of the engine to describe DB instance options for.
|
13513
13578
|
#
|
13514
13579
|
# Valid Values:
|
13515
13580
|
#
|
@@ -13519,6 +13584,10 @@ module Aws::RDS
|
|
13519
13584
|
#
|
13520
13585
|
# * `custom-oracle-ee`
|
13521
13586
|
#
|
13587
|
+
# * `db2-ae`
|
13588
|
+
#
|
13589
|
+
# * `db2-se`
|
13590
|
+
#
|
13522
13591
|
# * `mariadb`
|
13523
13592
|
#
|
13524
13593
|
# * `mysql`
|
@@ -13543,32 +13612,31 @@ module Aws::RDS
|
|
13543
13612
|
# @return [String]
|
13544
13613
|
#
|
13545
13614
|
# @!attribute [rw] engine_version
|
13546
|
-
#
|
13547
|
-
#
|
13615
|
+
# A filter to include only the available options for the specified
|
13616
|
+
# engine version.
|
13548
13617
|
# @return [String]
|
13549
13618
|
#
|
13550
13619
|
# @!attribute [rw] db_instance_class
|
13551
|
-
#
|
13552
|
-
#
|
13553
|
-
# class.
|
13620
|
+
# A filter to include only the available options for the specified DB
|
13621
|
+
# instance class.
|
13554
13622
|
# @return [String]
|
13555
13623
|
#
|
13556
13624
|
# @!attribute [rw] license_model
|
13557
|
-
#
|
13558
|
-
#
|
13625
|
+
# A filter to include only the available options for the specified
|
13626
|
+
# license model.
|
13559
13627
|
#
|
13560
13628
|
# RDS Custom supports only the BYOL licensing model.
|
13561
13629
|
# @return [String]
|
13562
13630
|
#
|
13563
13631
|
# @!attribute [rw] availability_zone_group
|
13564
13632
|
# The Availability Zone group associated with a Local Zone. Specify
|
13565
|
-
# this parameter to retrieve available
|
13566
|
-
#
|
13633
|
+
# this parameter to retrieve available options for the Local Zones in
|
13634
|
+
# the group.
|
13567
13635
|
#
|
13568
|
-
# Omit this parameter to show the available
|
13636
|
+
# Omit this parameter to show the available options in the specified
|
13569
13637
|
# Amazon Web Services Region.
|
13570
13638
|
#
|
13571
|
-
# This setting doesn't apply to RDS Custom.
|
13639
|
+
# This setting doesn't apply to RDS Custom DB instances.
|
13572
13640
|
# @return [String]
|
13573
13641
|
#
|
13574
13642
|
# @!attribute [rw] vpc
|
@@ -16648,7 +16716,7 @@ module Aws::RDS
|
|
16648
16716
|
# The new amount of storage in gibibytes (GiB) to allocate for the DB
|
16649
16717
|
# instance.
|
16650
16718
|
#
|
16651
|
-
# For RDS for MariaDB, RDS for MySQL, RDS for Oracle, and RDS for
|
16719
|
+
# For RDS for Db2, MariaDB, RDS for MySQL, RDS for Oracle, and RDS for
|
16652
16720
|
# PostgreSQL, the value supplied must be at least 10% greater than the
|
16653
16721
|
# current value. Values that are not at least 10% greater than the
|
16654
16722
|
# existing value are rounded up so that they are 10% greater than the
|
@@ -16781,10 +16849,10 @@ module Aws::RDS
|
|
16781
16849
|
# `MasterUserPassword` element exists in the `PendingModifiedValues`
|
16782
16850
|
# element of the operation response.
|
16783
16851
|
#
|
16784
|
-
# <note markdown="1"> Amazon RDS API operations never return the password, so this
|
16785
|
-
# provides a way to regain access to a primary instance user
|
16786
|
-
# password is lost. This includes restoring privileges that
|
16787
|
-
# been accidentally revoked.
|
16852
|
+
# <note markdown="1"> Amazon RDS API operations never return the password, so this
|
16853
|
+
# operation provides a way to regain access to a primary instance user
|
16854
|
+
# if the password is lost. This includes restoring privileges that
|
16855
|
+
# might have been accidentally revoked.
|
16788
16856
|
#
|
16789
16857
|
# </note>
|
16790
16858
|
#
|
@@ -16802,10 +16870,13 @@ module Aws::RDS
|
|
16802
16870
|
# * Can't be specified if `ManageMasterUserPassword` is turned on.
|
16803
16871
|
#
|
16804
16872
|
# * Can include any printable ASCII character except "/", """, or
|
16805
|
-
# "@".
|
16873
|
+
# "@". For RDS for Oracle, can't include the "&"
|
16874
|
+
# (ampersand) or the "'" (single quotes) character.
|
16806
16875
|
#
|
16807
16876
|
# Length Constraints:
|
16808
16877
|
#
|
16878
|
+
# * RDS for Db2 - Must contain from 8 to 255 characters.
|
16879
|
+
#
|
16809
16880
|
# * RDS for MariaDB - Must contain from 8 to 41 characters.
|
16810
16881
|
#
|
16811
16882
|
# * RDS for Microsoft SQL Server - Must contain from 8 to 128
|
@@ -17022,6 +17093,8 @@ module Aws::RDS
|
|
17022
17093
|
#
|
17023
17094
|
# Valid Values:
|
17024
17095
|
#
|
17096
|
+
# * RDS for Db2 - `bring-your-own-license`
|
17097
|
+
#
|
17025
17098
|
# * RDS for MariaDB - `general-public-license`
|
17026
17099
|
#
|
17027
17100
|
# * RDS for Microsoft SQL Server - `license-included`
|
@@ -17176,8 +17249,8 @@ module Aws::RDS
|
|
17176
17249
|
# The Active Directory directory ID to move the DB instance to.
|
17177
17250
|
# Specify `none` to remove the instance from its current domain. You
|
17178
17251
|
# must create the domain before this operation. Currently, you can
|
17179
|
-
# create only MySQL, Microsoft SQL Server, Oracle, and PostgreSQL
|
17180
|
-
# instances in an Active Directory Domain.
|
17252
|
+
# create only Db2, MySQL, Microsoft SQL Server, Oracle, and PostgreSQL
|
17253
|
+
# DB instances in an Active Directory Domain.
|
17181
17254
|
#
|
17182
17255
|
# For more information, see [ Kerberos Authentication][1] in the
|
17183
17256
|
# *Amazon RDS User Guide*.
|
@@ -17282,6 +17355,8 @@ module Aws::RDS
|
|
17282
17355
|
#
|
17283
17356
|
# * Amazon Aurora - `3306`
|
17284
17357
|
#
|
17358
|
+
# * RDS for Db2 - `50000`
|
17359
|
+
#
|
17285
17360
|
# * RDS for MariaDB - `3306`
|
17286
17361
|
#
|
17287
17362
|
# * RDS for Microsoft SQL Server - `1433`
|
@@ -22112,16 +22187,16 @@ module Aws::RDS
|
|
22112
22187
|
end
|
22113
22188
|
|
22114
22189
|
# @!attribute [rw] db_instance_identifier
|
22115
|
-
#
|
22190
|
+
# The name of the DB instance to create from the DB snapshot. This
|
22116
22191
|
# parameter isn't case-sensitive.
|
22117
22192
|
#
|
22118
22193
|
# Constraints:
|
22119
22194
|
#
|
22120
|
-
# * Must contain from 1 to 63 numbers, letters, or hyphens
|
22195
|
+
# * Must contain from 1 to 63 numbers, letters, or hyphens.
|
22121
22196
|
#
|
22122
|
-
# * First character must be a letter
|
22197
|
+
# * First character must be a letter.
|
22123
22198
|
#
|
22124
|
-
# * Can't end with a hyphen or contain two consecutive hyphens
|
22199
|
+
# * Can't end with a hyphen or contain two consecutive hyphens.
|
22125
22200
|
#
|
22126
22201
|
# Example: `my-snapshot-id`
|
22127
22202
|
# @return [String]
|
@@ -22131,7 +22206,7 @@ module Aws::RDS
|
|
22131
22206
|
#
|
22132
22207
|
# Constraints:
|
22133
22208
|
#
|
22134
|
-
# * Must match the identifier of an existing
|
22209
|
+
# * Must match the identifier of an existing DB snapshot.
|
22135
22210
|
#
|
22136
22211
|
# * Can't be specified when `DBClusterSnapshotIdentifier` is
|
22137
22212
|
# specified.
|
@@ -22177,10 +22252,13 @@ module Aws::RDS
|
|
22177
22252
|
# @return [String]
|
22178
22253
|
#
|
22179
22254
|
# @!attribute [rw] db_subnet_group_name
|
22180
|
-
# The DB subnet group
|
22255
|
+
# The name of the DB subnet group to use for the new instance.
|
22181
22256
|
#
|
22182
|
-
# Constraints:
|
22183
|
-
#
|
22257
|
+
# Constraints:
|
22258
|
+
#
|
22259
|
+
# * If supplied, must match the name of an existing DB subnet group.
|
22260
|
+
#
|
22261
|
+
# ^
|
22184
22262
|
#
|
22185
22263
|
# Example: `mydbsubnetgroup`
|
22186
22264
|
# @return [String]
|
@@ -22231,10 +22309,11 @@ module Aws::RDS
|
|
22231
22309
|
# @return [String]
|
22232
22310
|
#
|
22233
22311
|
# @!attribute [rw] db_name
|
22234
|
-
# The database
|
22312
|
+
# The name of the database for the restored DB instance.
|
22235
22313
|
#
|
22236
|
-
# This parameter
|
22237
|
-
#
|
22314
|
+
# This parameter only applies to RDS for Oracle and RDS for SQL Server
|
22315
|
+
# DB instances. It doesn't apply to the other engines or to RDS
|
22316
|
+
# Custom DB instances.
|
22238
22317
|
# @return [String]
|
22239
22318
|
#
|
22240
22319
|
# @!attribute [rw] engine
|
@@ -22250,6 +22329,10 @@ module Aws::RDS
|
|
22250
22329
|
#
|
22251
22330
|
# Valid Values:
|
22252
22331
|
#
|
22332
|
+
# * `db2-ae`
|
22333
|
+
#
|
22334
|
+
# * `db2-se`
|
22335
|
+
#
|
22253
22336
|
# * `mariadb`
|
22254
22337
|
#
|
22255
22338
|
# * `mysql`
|
@@ -22347,10 +22430,10 @@ module Aws::RDS
|
|
22347
22430
|
# @return [Array<String>]
|
22348
22431
|
#
|
22349
22432
|
# @!attribute [rw] domain
|
22350
|
-
#
|
22351
|
-
#
|
22352
|
-
#
|
22353
|
-
#
|
22433
|
+
# The Active Directory directory ID to restore the DB instance in. The
|
22434
|
+
# domain/ must be created prior to this operation. Currently, you can
|
22435
|
+
# create only Db2, MySQL, Microsoft SQL Server, Oracle, and PostgreSQL
|
22436
|
+
# DB instances in an Active Directory Domain.
|
22354
22437
|
#
|
22355
22438
|
# For more information, see [ Kerberos Authentication][1] in the
|
22356
22439
|
# *Amazon RDS User Guide*.
|
@@ -22461,10 +22544,10 @@ module Aws::RDS
|
|
22461
22544
|
# @return [Boolean]
|
22462
22545
|
#
|
22463
22546
|
# @!attribute [rw] enable_cloudwatch_logs_exports
|
22464
|
-
# The list of logs
|
22465
|
-
# CloudWatch Logs. The values in the list depend on the DB engine
|
22466
|
-
#
|
22467
|
-
#
|
22547
|
+
# The list of logs for the restored DB instance to export to
|
22548
|
+
# CloudWatch Logs. The values in the list depend on the DB engine. For
|
22549
|
+
# more information, see [Publishing Database Logs to Amazon CloudWatch
|
22550
|
+
# Logs][1] in the *Amazon RDS User Guide*.
|
22468
22551
|
#
|
22469
22552
|
# This setting doesn't apply to RDS Custom.
|
22470
22553
|
#
|
@@ -22498,7 +22581,8 @@ module Aws::RDS
|
|
22498
22581
|
#
|
22499
22582
|
# Constraints:
|
22500
22583
|
#
|
22501
|
-
# * If supplied, must match the name of an existing
|
22584
|
+
# * If supplied, must match the name of an existing DB parameter
|
22585
|
+
# group.
|
22502
22586
|
#
|
22503
22587
|
# * Must be 1 to 255 letters, numbers, or hyphens.
|
22504
22588
|
#
|
@@ -22788,31 +22872,30 @@ module Aws::RDS
|
|
22788
22872
|
# @return [String]
|
22789
22873
|
#
|
22790
22874
|
# @!attribute [rw] master_user_password
|
22791
|
-
# The password for the master user.
|
22792
|
-
# printable ASCII character except "/", """, or "@".
|
22793
|
-
#
|
22794
|
-
# Constraints: Can't be specified if `ManageMasterUserPassword` is
|
22795
|
-
# turned on.
|
22875
|
+
# The password for the master user.
|
22796
22876
|
#
|
22797
|
-
#
|
22877
|
+
# Constraints:
|
22798
22878
|
#
|
22799
|
-
#
|
22879
|
+
# * Can't be specified if `ManageMasterUserPassword` is turned on.
|
22800
22880
|
#
|
22801
|
-
#
|
22881
|
+
# * Can include any printable ASCII character except "/", """, or
|
22882
|
+
# "@". For RDS for Oracle, can't include the "&"
|
22883
|
+
# (ampersand) or the "'" (single quotes) character.
|
22802
22884
|
#
|
22803
|
-
# Constraints:
|
22885
|
+
# Length Constraints:
|
22804
22886
|
#
|
22805
|
-
#
|
22887
|
+
# * RDS for Db2 - Must contain from 8 to 128 characters.
|
22806
22888
|
#
|
22807
|
-
#
|
22889
|
+
# * RDS for MariaDB - Must contain from 8 to 41 characters.
|
22808
22890
|
#
|
22809
|
-
#
|
22891
|
+
# * RDS for Microsoft SQL Server - Must contain from 8 to 128
|
22892
|
+
# characters.
|
22810
22893
|
#
|
22811
|
-
#
|
22894
|
+
# * RDS for MySQL - Must contain from 8 to 41 characters.
|
22812
22895
|
#
|
22813
|
-
#
|
22896
|
+
# * RDS for Oracle - Must contain from 8 to 30 characters.
|
22814
22897
|
#
|
22815
|
-
#
|
22898
|
+
# * RDS for PostgreSQL - Must contain from 8 to 128 characters.
|
22816
22899
|
# @return [String]
|
22817
22900
|
#
|
22818
22901
|
# @!attribute [rw] db_security_groups
|
@@ -23494,10 +23577,15 @@ module Aws::RDS
|
|
23494
23577
|
# @!attribute [rw] db_name
|
23495
23578
|
# The database name for the restored DB instance.
|
23496
23579
|
#
|
23497
|
-
#
|
23498
|
-
# also doesn't apply to RDS Custom.
|
23580
|
+
# This parameter doesn't apply to the following DB instances:
|
23499
23581
|
#
|
23500
|
-
#
|
23582
|
+
# * RDS Custom
|
23583
|
+
#
|
23584
|
+
# * RDS for Db2
|
23585
|
+
#
|
23586
|
+
# * RDS for MariaDB
|
23587
|
+
#
|
23588
|
+
# * RDS for MySQL
|
23501
23589
|
# @return [String]
|
23502
23590
|
#
|
23503
23591
|
# @!attribute [rw] engine
|
@@ -23507,6 +23595,10 @@ module Aws::RDS
|
|
23507
23595
|
#
|
23508
23596
|
# Valid Values:
|
23509
23597
|
#
|
23598
|
+
# * `db2-ae`
|
23599
|
+
#
|
23600
|
+
# * `db2-se`
|
23601
|
+
#
|
23510
23602
|
# * `mariadb`
|
23511
23603
|
#
|
23512
23604
|
# * `mysql`
|
@@ -23844,11 +23936,16 @@ module Aws::RDS
|
|
23844
23936
|
# @return [String]
|
23845
23937
|
#
|
23846
23938
|
# @!attribute [rw] backup_target
|
23847
|
-
#
|
23848
|
-
#
|
23939
|
+
# The location for storing automated backups and manual snapshots for
|
23940
|
+
# the restored DB instance.
|
23849
23941
|
#
|
23850
|
-
#
|
23851
|
-
#
|
23942
|
+
# Valid Values:
|
23943
|
+
#
|
23944
|
+
# * `outposts` (Amazon Web Services Outposts)
|
23945
|
+
#
|
23946
|
+
# * `region` (Amazon Web Services Region)
|
23947
|
+
#
|
23948
|
+
# Default: `region`
|
23852
23949
|
#
|
23853
23950
|
# For more information, see [Working with Amazon RDS on Amazon Web
|
23854
23951
|
# Services Outposts][1] in the *Amazon RDS User Guide*.
|