aws-sdk-rds 1.32.0 → 1.33.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/lib/aws-sdk-rds.rb +1 -1
- data/lib/aws-sdk-rds/client.rb +138 -74
- data/lib/aws-sdk-rds/client_api.rb +4 -0
- data/lib/aws-sdk-rds/db_cluster.rb +28 -12
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +26 -10
- data/lib/aws-sdk-rds/db_engine.rb +1 -1
- data/lib/aws-sdk-rds/db_engine_version.rb +1 -1
- data/lib/aws-sdk-rds/db_instance.rb +37 -24
- data/lib/aws-sdk-rds/db_parameter_group.rb +2 -2
- data/lib/aws-sdk-rds/db_snapshot.rb +18 -3
- data/lib/aws-sdk-rds/option_group.rb +2 -2
- data/lib/aws-sdk-rds/resource.rb +24 -26
- data/lib/aws-sdk-rds/types.rb +146 -74
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1a07a82e37ca063514e9a89b2800acdcc67b2a72
|
4
|
+
data.tar.gz: 9ca644e08ec18e42c235e77c3f6459554b5204a5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7c60fbb611938f7ff424eb2c129dec6b921d2e2ce8bc49a5f034f17a2d64ea3c35c0316e9d0f3bd471cd42babffd872b0cc0f57aa82aefdab247e701ce17dca9
|
7
|
+
data.tar.gz: 50e7bd89142936667ad6e15a059ecb9b88934b6f73bd8a12c978a98b63750a8e47548757844e97764169dce4c44c0e759d86f080cc5386ed0f88d12053a2fd7f
|
data/lib/aws-sdk-rds.rb
CHANGED
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -552,7 +552,7 @@ module Aws::RDS
|
|
552
552
|
#
|
553
553
|
# * First character must be a letter.
|
554
554
|
#
|
555
|
-
# *
|
555
|
+
# * Can't end with a hyphen or contain two consecutive hyphens.
|
556
556
|
#
|
557
557
|
# Example: `my-cluster1`
|
558
558
|
#
|
@@ -571,7 +571,7 @@ module Aws::RDS
|
|
571
571
|
#
|
572
572
|
# * Must contain a valid ISO 8601 timestamp.
|
573
573
|
#
|
574
|
-
# *
|
574
|
+
# * Can't contain a timestamp set in the future.
|
575
575
|
#
|
576
576
|
# Example: `2017-07-08T18:00Z`
|
577
577
|
#
|
@@ -655,13 +655,13 @@ module Aws::RDS
|
|
655
655
|
#
|
656
656
|
# Constraints:
|
657
657
|
#
|
658
|
-
# *
|
658
|
+
# * Can't be null, empty, or blank
|
659
659
|
#
|
660
660
|
# * Must contain from 1 to 255 letters, numbers, or hyphens
|
661
661
|
#
|
662
662
|
# * First character must be a letter
|
663
663
|
#
|
664
|
-
# *
|
664
|
+
# * Can't end with a hyphen or contain two consecutive hyphens
|
665
665
|
#
|
666
666
|
# Example: `my-cluster-param-group1`
|
667
667
|
#
|
@@ -839,7 +839,7 @@ module Aws::RDS
|
|
839
839
|
#
|
840
840
|
# * First character must be a letter.
|
841
841
|
#
|
842
|
-
# *
|
842
|
+
# * Can't end with a hyphen or contain two consecutive hyphens.
|
843
843
|
#
|
844
844
|
# Example: `my-cluster-snapshot2`
|
845
845
|
#
|
@@ -1016,13 +1016,13 @@ module Aws::RDS
|
|
1016
1016
|
#
|
1017
1017
|
# Constraints:
|
1018
1018
|
#
|
1019
|
-
# *
|
1019
|
+
# * Can't be null, empty, or blank
|
1020
1020
|
#
|
1021
1021
|
# * Must contain from 1 to 255 letters, numbers, or hyphens
|
1022
1022
|
#
|
1023
1023
|
# * First character must be a letter
|
1024
1024
|
#
|
1025
|
-
# *
|
1025
|
+
# * Can't end with a hyphen or contain two consecutive hyphens
|
1026
1026
|
#
|
1027
1027
|
# Example: `my-db-parameter-group`
|
1028
1028
|
#
|
@@ -1136,13 +1136,13 @@ module Aws::RDS
|
|
1136
1136
|
#
|
1137
1137
|
# Constraints:
|
1138
1138
|
#
|
1139
|
-
# *
|
1139
|
+
# * Can't be null, empty, or blank
|
1140
1140
|
#
|
1141
1141
|
# * Must contain from 1 to 255 letters, numbers, or hyphens
|
1142
1142
|
#
|
1143
1143
|
# * First character must be a letter
|
1144
1144
|
#
|
1145
|
-
# *
|
1145
|
+
# * Can't end with a hyphen or contain two consecutive hyphens
|
1146
1146
|
#
|
1147
1147
|
# Example: `my-db-snapshot`
|
1148
1148
|
#
|
@@ -1355,13 +1355,13 @@ module Aws::RDS
|
|
1355
1355
|
#
|
1356
1356
|
# Constraints:
|
1357
1357
|
#
|
1358
|
-
# *
|
1358
|
+
# * Can't be null, empty, or blank
|
1359
1359
|
#
|
1360
1360
|
# * Must contain from 1 to 255 letters, numbers, or hyphens
|
1361
1361
|
#
|
1362
1362
|
# * First character must be a letter
|
1363
1363
|
#
|
1364
|
-
# *
|
1364
|
+
# * Can't end with a hyphen or contain two consecutive hyphens
|
1365
1365
|
#
|
1366
1366
|
# Example: `my-option-group`
|
1367
1367
|
#
|
@@ -1509,7 +1509,7 @@ module Aws::RDS
|
|
1509
1509
|
#
|
1510
1510
|
# * First character must be a letter.
|
1511
1511
|
#
|
1512
|
-
# *
|
1512
|
+
# * Can't end with a hyphen or contain two consecutive hyphens.
|
1513
1513
|
#
|
1514
1514
|
# Example: `my-cluster1`
|
1515
1515
|
#
|
@@ -1519,8 +1519,8 @@ module Aws::RDS
|
|
1519
1519
|
#
|
1520
1520
|
# Constraints:
|
1521
1521
|
#
|
1522
|
-
# * If supplied, must match the name of an existing
|
1523
|
-
#
|
1522
|
+
# * If supplied, must match the name of an existing DB cluster parameter
|
1523
|
+
# group.
|
1524
1524
|
#
|
1525
1525
|
# ^
|
1526
1526
|
#
|
@@ -1569,7 +1569,7 @@ module Aws::RDS
|
|
1569
1569
|
#
|
1570
1570
|
# * First character must be a letter.
|
1571
1571
|
#
|
1572
|
-
# *
|
1572
|
+
# * Can't be a reserved word for the chosen database engine.
|
1573
1573
|
#
|
1574
1574
|
# @option params [String] :master_user_password
|
1575
1575
|
# The password for the master database user. This password can contain
|
@@ -1944,7 +1944,7 @@ module Aws::RDS
|
|
1944
1944
|
#
|
1945
1945
|
# Constraints:
|
1946
1946
|
#
|
1947
|
-
# * Must match the name of an existing
|
1947
|
+
# * Must match the name of an existing DB cluster parameter group.
|
1948
1948
|
#
|
1949
1949
|
# ^
|
1950
1950
|
#
|
@@ -2047,7 +2047,7 @@ module Aws::RDS
|
|
2047
2047
|
#
|
2048
2048
|
# * First character must be a letter.
|
2049
2049
|
#
|
2050
|
-
# *
|
2050
|
+
# * Can't end with a hyphen or contain two consecutive hyphens.
|
2051
2051
|
#
|
2052
2052
|
# Example: `my-cluster1-snapshot1`
|
2053
2053
|
#
|
@@ -2150,7 +2150,7 @@ module Aws::RDS
|
|
2150
2150
|
#
|
2151
2151
|
# * Must contain 1 to 64 letters or numbers.
|
2152
2152
|
#
|
2153
|
-
# *
|
2153
|
+
# * Can't be a word reserved by the specified database engine
|
2154
2154
|
#
|
2155
2155
|
# **MariaDB**
|
2156
2156
|
#
|
@@ -2162,7 +2162,7 @@ module Aws::RDS
|
|
2162
2162
|
#
|
2163
2163
|
# * Must contain 1 to 64 letters or numbers.
|
2164
2164
|
#
|
2165
|
-
# *
|
2165
|
+
# * Can't be a word reserved by the specified database engine
|
2166
2166
|
#
|
2167
2167
|
# **PostgreSQL**
|
2168
2168
|
#
|
@@ -2177,7 +2177,7 @@ module Aws::RDS
|
|
2177
2177
|
# * Must begin with a letter or an underscore. Subsequent characters can
|
2178
2178
|
# be letters, underscores, or digits (0-9).
|
2179
2179
|
#
|
2180
|
-
# *
|
2180
|
+
# * Can't be a word reserved by the specified database engine
|
2181
2181
|
#
|
2182
2182
|
# **Oracle**
|
2183
2183
|
#
|
@@ -2189,7 +2189,7 @@ module Aws::RDS
|
|
2189
2189
|
#
|
2190
2190
|
# Constraints:
|
2191
2191
|
#
|
2192
|
-
# *
|
2192
|
+
# * Can't be longer than 8 characters
|
2193
2193
|
#
|
2194
2194
|
# ^
|
2195
2195
|
#
|
@@ -2207,7 +2207,7 @@ module Aws::RDS
|
|
2207
2207
|
#
|
2208
2208
|
# * Must contain 1 to 64 letters or numbers.
|
2209
2209
|
#
|
2210
|
-
# *
|
2210
|
+
# * Can't be a word reserved by the specified database engine
|
2211
2211
|
#
|
2212
2212
|
# @option params [required, String] :db_instance_identifier
|
2213
2213
|
# The DB instance identifier. This parameter is stored as a lowercase
|
@@ -2219,7 +2219,7 @@ module Aws::RDS
|
|
2219
2219
|
#
|
2220
2220
|
# * First character must be a letter.
|
2221
2221
|
#
|
2222
|
-
# *
|
2222
|
+
# * Can't end with a hyphen or contain two consecutive hyphens.
|
2223
2223
|
#
|
2224
2224
|
# Example: `mydbinstance`
|
2225
2225
|
#
|
@@ -2374,7 +2374,7 @@ module Aws::RDS
|
|
2374
2374
|
#
|
2375
2375
|
# * Must be 1 to 16 letters or numbers.
|
2376
2376
|
#
|
2377
|
-
# *
|
2377
|
+
# * Can't be a reserved word for the chosen database engine.
|
2378
2378
|
#
|
2379
2379
|
# **Microsoft SQL Server**
|
2380
2380
|
#
|
@@ -2386,7 +2386,7 @@ module Aws::RDS
|
|
2386
2386
|
#
|
2387
2387
|
# * The first character must be a letter.
|
2388
2388
|
#
|
2389
|
-
# *
|
2389
|
+
# * Can't be a reserved word for the chosen database engine.
|
2390
2390
|
#
|
2391
2391
|
# **MySQL**
|
2392
2392
|
#
|
@@ -2398,7 +2398,7 @@ module Aws::RDS
|
|
2398
2398
|
#
|
2399
2399
|
# * First character must be a letter.
|
2400
2400
|
#
|
2401
|
-
# *
|
2401
|
+
# * Can't be a reserved word for the chosen database engine.
|
2402
2402
|
#
|
2403
2403
|
# **Oracle**
|
2404
2404
|
#
|
@@ -2410,7 +2410,7 @@ module Aws::RDS
|
|
2410
2410
|
#
|
2411
2411
|
# * First character must be a letter.
|
2412
2412
|
#
|
2413
|
-
# *
|
2413
|
+
# * Can't be a reserved word for the chosen database engine.
|
2414
2414
|
#
|
2415
2415
|
# **PostgreSQL**
|
2416
2416
|
#
|
@@ -2422,7 +2422,7 @@ module Aws::RDS
|
|
2422
2422
|
#
|
2423
2423
|
# * First character must be a letter.
|
2424
2424
|
#
|
2425
|
-
# *
|
2425
|
+
# * Can't be a reserved word for the chosen database engine.
|
2426
2426
|
#
|
2427
2427
|
# @option params [String] :master_user_password
|
2428
2428
|
# The password for the master user. The password can include any
|
@@ -2522,7 +2522,7 @@ module Aws::RDS
|
|
2522
2522
|
#
|
2523
2523
|
# * First character must be a letter
|
2524
2524
|
#
|
2525
|
-
# *
|
2525
|
+
# * Can't end with a hyphen or contain two consecutive hyphens
|
2526
2526
|
#
|
2527
2527
|
# @option params [Integer] :backup_retention_period
|
2528
2528
|
# The number of days for which automated backups are retained. Setting
|
@@ -2540,7 +2540,7 @@ module Aws::RDS
|
|
2540
2540
|
#
|
2541
2541
|
# * Must be a value from 0 to 35
|
2542
2542
|
#
|
2543
|
-
# *
|
2543
|
+
# * Can't be set to 0 if the DB instance is a source to Read Replicas
|
2544
2544
|
#
|
2545
2545
|
# @option params [String] :preferred_backup_window
|
2546
2546
|
# The daily time range during which automated backups are created if
|
@@ -2692,9 +2692,7 @@ module Aws::RDS
|
|
2692
2692
|
# Improve Performance][1] in the *Amazon RDS User Guide*.
|
2693
2693
|
#
|
2694
2694
|
# Constraints: Must be a multiple between 1 and 50 of the storage amount
|
2695
|
-
# for the DB instance.
|
2696
|
-
# example, if the size of your DB instance is 500 GiB, then your `Iops`
|
2697
|
-
# value can be 2000, 3000, 4000, or 5000.
|
2695
|
+
# for the DB instance.
|
2698
2696
|
#
|
2699
2697
|
#
|
2700
2698
|
#
|
@@ -3687,7 +3685,7 @@ module Aws::RDS
|
|
3687
3685
|
#
|
3688
3686
|
# * First character must be a letter
|
3689
3687
|
#
|
3690
|
-
# *
|
3688
|
+
# * Can't end with a hyphen or contain two consecutive hyphens
|
3691
3689
|
#
|
3692
3690
|
# <note markdown="1"> This value is stored as a lowercase string.
|
3693
3691
|
#
|
@@ -3789,7 +3787,7 @@ module Aws::RDS
|
|
3789
3787
|
#
|
3790
3788
|
# * First character must be a letter
|
3791
3789
|
#
|
3792
|
-
# *
|
3790
|
+
# * Can't end with a hyphen or contain two consecutive hyphens
|
3793
3791
|
#
|
3794
3792
|
# * Must not be "Default"
|
3795
3793
|
#
|
@@ -3872,13 +3870,13 @@ module Aws::RDS
|
|
3872
3870
|
#
|
3873
3871
|
# Constraints:
|
3874
3872
|
#
|
3875
|
-
# *
|
3873
|
+
# * Can't be null, empty, or blank
|
3876
3874
|
#
|
3877
3875
|
# * Must contain from 1 to 255 letters, numbers, or hyphens
|
3878
3876
|
#
|
3879
3877
|
# * First character must be a letter
|
3880
3878
|
#
|
3881
|
-
# *
|
3879
|
+
# * Can't end with a hyphen or contain two consecutive hyphens
|
3882
3880
|
#
|
3883
3881
|
# Example: `my-snapshot-id`
|
3884
3882
|
#
|
@@ -4225,7 +4223,7 @@ module Aws::RDS
|
|
4225
4223
|
#
|
4226
4224
|
# * First character must be a letter
|
4227
4225
|
#
|
4228
|
-
# *
|
4226
|
+
# * Can't end with a hyphen or contain two consecutive hyphens
|
4229
4227
|
#
|
4230
4228
|
# Example: `myoptiongroup`
|
4231
4229
|
#
|
@@ -4379,7 +4377,7 @@ module Aws::RDS
|
|
4379
4377
|
#
|
4380
4378
|
# * First character must be a letter
|
4381
4379
|
#
|
4382
|
-
# *
|
4380
|
+
# * Can't end with a hyphen or contain two consecutive hyphens
|
4383
4381
|
#
|
4384
4382
|
# @return [Types::DeleteDBClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4385
4383
|
#
|
@@ -4501,7 +4499,7 @@ module Aws::RDS
|
|
4501
4499
|
#
|
4502
4500
|
# * You can't delete a default DB cluster parameter group.
|
4503
4501
|
#
|
4504
|
-
# *
|
4502
|
+
# * Can't be associated with any DB clusters.
|
4505
4503
|
#
|
4506
4504
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
4507
4505
|
#
|
@@ -4684,9 +4682,9 @@ module Aws::RDS
|
|
4684
4682
|
#
|
4685
4683
|
# * First character must be a letter
|
4686
4684
|
#
|
4687
|
-
# *
|
4685
|
+
# * Can't end with a hyphen or contain two consecutive hyphens
|
4688
4686
|
#
|
4689
|
-
# *
|
4687
|
+
# * Can't be specified when deleting a Read Replica.
|
4690
4688
|
#
|
4691
4689
|
# @return [Types::DeleteDBInstanceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4692
4690
|
#
|
@@ -4845,7 +4843,7 @@ module Aws::RDS
|
|
4845
4843
|
#
|
4846
4844
|
# * You can't delete a default DB parameter group
|
4847
4845
|
#
|
4848
|
-
# *
|
4846
|
+
# * Can't be associated with any DB instances
|
4849
4847
|
#
|
4850
4848
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
4851
4849
|
#
|
@@ -4893,7 +4891,7 @@ module Aws::RDS
|
|
4893
4891
|
#
|
4894
4892
|
# * First character must be a letter
|
4895
4893
|
#
|
4896
|
-
# *
|
4894
|
+
# * Can't end with a hyphen or contain two consecutive hyphens
|
4897
4895
|
#
|
4898
4896
|
# * Must not be "Default"
|
4899
4897
|
#
|
@@ -5283,7 +5281,7 @@ module Aws::RDS
|
|
5283
5281
|
#
|
5284
5282
|
# * First character must be a letter.
|
5285
5283
|
#
|
5286
|
-
# *
|
5284
|
+
# * Can't end with a hyphen or contain two consecutive hyphens.
|
5287
5285
|
#
|
5288
5286
|
# Example: `my-cluster1`
|
5289
5287
|
#
|
@@ -7324,7 +7322,7 @@ module Aws::RDS
|
|
7324
7322
|
# * If the source type is `DBSnapshot`, a `DBSnapshotIdentifier` must be
|
7325
7323
|
# supplied.
|
7326
7324
|
#
|
7327
|
-
# *
|
7325
|
+
# * Can't end with a hyphen or contain two consecutive hyphens.
|
7328
7326
|
#
|
7329
7327
|
# @option params [String] :source_type
|
7330
7328
|
# The event source to retrieve events for. If no value is specified, all
|
@@ -7552,7 +7550,7 @@ module Aws::RDS
|
|
7552
7550
|
# Describes the available option groups.
|
7553
7551
|
#
|
7554
7552
|
# @option params [String] :option_group_name
|
7555
|
-
# The name of the option group to describe.
|
7553
|
+
# The name of the option group to describe. Can't be supplied together
|
7556
7554
|
# with EngineName or MajorEngineVersion.
|
7557
7555
|
#
|
7558
7556
|
# @option params [Array<Types::Filter>] :filters
|
@@ -8728,7 +8726,7 @@ module Aws::RDS
|
|
8728
8726
|
#
|
8729
8727
|
# * The first character must be a letter
|
8730
8728
|
#
|
8731
|
-
# *
|
8729
|
+
# * Can't end with a hyphen or contain two consecutive hyphens
|
8732
8730
|
#
|
8733
8731
|
# Example: `my-cluster2`
|
8734
8732
|
#
|
@@ -9404,7 +9402,7 @@ module Aws::RDS
|
|
9404
9402
|
# * Can be specified for a PostgreSQL Read Replica only if the source is
|
9405
9403
|
# running PostgreSQL 9.3.5
|
9406
9404
|
#
|
9407
|
-
# *
|
9405
|
+
# * Can't be set to 0 if the DB instance is a source to Read Replicas
|
9408
9406
|
#
|
9409
9407
|
# @option params [String] :preferred_backup_window
|
9410
9408
|
# The daily time range during which automated backups are created if
|
@@ -9552,7 +9550,7 @@ module Aws::RDS
|
|
9552
9550
|
#
|
9553
9551
|
# * The first character must be a letter.
|
9554
9552
|
#
|
9555
|
-
# *
|
9553
|
+
# * Can't end with a hyphen or contain two consecutive hyphens.
|
9556
9554
|
#
|
9557
9555
|
# Example: `mydbinstance`
|
9558
9556
|
#
|
@@ -11518,7 +11516,7 @@ module Aws::RDS
|
|
11518
11516
|
#
|
11519
11517
|
# * First character must be a letter.
|
11520
11518
|
#
|
11521
|
-
# *
|
11519
|
+
# * Can't end with a hyphen or contain two consecutive hyphens.
|
11522
11520
|
#
|
11523
11521
|
# Example: `my-cluster1`
|
11524
11522
|
#
|
@@ -11578,7 +11576,7 @@ module Aws::RDS
|
|
11578
11576
|
#
|
11579
11577
|
# * First character must be a letter.
|
11580
11578
|
#
|
11581
|
-
# *
|
11579
|
+
# * Can't be a reserved word for the chosen database engine.
|
11582
11580
|
#
|
11583
11581
|
# @option params [required, String] :master_user_password
|
11584
11582
|
# The password for the master database user. This password can contain
|
@@ -11858,8 +11856,8 @@ module Aws::RDS
|
|
11858
11856
|
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
11859
11857
|
#
|
11860
11858
|
# @option params [Array<String>] :availability_zones
|
11861
|
-
# Provides the list of EC2 Availability Zones that instances in
|
11862
|
-
# restored DB cluster can be created in.
|
11859
|
+
# Provides the list of Amazon EC2 Availability Zones that instances in
|
11860
|
+
# the restored DB cluster can be created in.
|
11863
11861
|
#
|
11864
11862
|
# @option params [required, String] :db_cluster_identifier
|
11865
11863
|
# The name of the DB cluster to create from the DB snapshot or DB
|
@@ -11871,7 +11869,7 @@ module Aws::RDS
|
|
11871
11869
|
#
|
11872
11870
|
# * First character must be a letter
|
11873
11871
|
#
|
11874
|
-
# *
|
11872
|
+
# * Can't end with a hyphen or contain two consecutive hyphens
|
11875
11873
|
#
|
11876
11874
|
# Example: `my-snapshot-id`
|
11877
11875
|
#
|
@@ -11902,15 +11900,15 @@ module Aws::RDS
|
|
11902
11900
|
# @option params [Integer] :port
|
11903
11901
|
# The port number on which the new DB cluster accepts connections.
|
11904
11902
|
#
|
11905
|
-
# Constraints:
|
11903
|
+
# Constraints: This value must be `1150-65535`
|
11906
11904
|
#
|
11907
11905
|
# Default: The same port as the original DB cluster.
|
11908
11906
|
#
|
11909
11907
|
# @option params [String] :db_subnet_group_name
|
11910
11908
|
# The name of the DB subnet group to use for the new DB cluster.
|
11911
11909
|
#
|
11912
|
-
# Constraints: If supplied, must match the name of an existing
|
11913
|
-
#
|
11910
|
+
# Constraints: If supplied, must match the name of an existing DB subnet
|
11911
|
+
# group.
|
11914
11912
|
#
|
11915
11913
|
# Example: `mySubnetgroup`
|
11916
11914
|
#
|
@@ -11936,8 +11934,8 @@ module Aws::RDS
|
|
11936
11934
|
# cluster, then you can use the KMS key alias instead of the ARN for the
|
11937
11935
|
# KMS encryption key.
|
11938
11936
|
#
|
11939
|
-
# If you
|
11940
|
-
# following
|
11937
|
+
# If you don't specify a value for the `KmsKeyId` parameter, then the
|
11938
|
+
# following occurs:
|
11941
11939
|
#
|
11942
11940
|
# * If the DB snapshot or DB cluster snapshot in `SnapshotIdentifier` is
|
11943
11941
|
# encrypted, then the restored DB cluster is encrypted using the KMS
|
@@ -11966,7 +11964,7 @@ module Aws::RDS
|
|
11966
11964
|
# ^
|
11967
11965
|
#
|
11968
11966
|
# @option params [Array<String>] :enable_cloudwatch_logs_exports
|
11969
|
-
# The list of logs that the restored DB cluster is to export to
|
11967
|
+
# The list of logs that the restored DB cluster is to export to Amazon
|
11970
11968
|
# CloudWatch Logs. The values in the list depend on the DB engine being
|
11971
11969
|
# used. For more information, see [Publishing Database Logs to Amazon
|
11972
11970
|
# CloudWatch Logs ][1] in the *Amazon Aurora User Guide*.
|
@@ -11983,6 +11981,22 @@ module Aws::RDS
|
|
11983
11981
|
# For DB clusters in `serverless` DB engine mode, the scaling properties
|
11984
11982
|
# of the DB cluster.
|
11985
11983
|
#
|
11984
|
+
# @option params [String] :db_cluster_parameter_group_name
|
11985
|
+
# The name of the DB cluster parameter group to associate with this DB
|
11986
|
+
# cluster. If this argument is omitted, the default DB cluster parameter
|
11987
|
+
# group for the specified engine is used.
|
11988
|
+
#
|
11989
|
+
# Constraints:
|
11990
|
+
#
|
11991
|
+
# * If supplied, must match the name of an existing default DB cluster
|
11992
|
+
# parameter group.
|
11993
|
+
#
|
11994
|
+
# * Must be 1 to 255 letters, numbers, or hyphens.
|
11995
|
+
#
|
11996
|
+
# * First character must be a letter.
|
11997
|
+
#
|
11998
|
+
# * Can't end with a hyphen or contain two consecutive hyphens.
|
11999
|
+
#
|
11986
12000
|
# @option params [Boolean] :deletion_protection
|
11987
12001
|
# Indicates if the DB cluster should have deletion protection enabled.
|
11988
12002
|
# The database can't be deleted when this value is set to true. The
|
@@ -12039,6 +12053,7 @@ module Aws::RDS
|
|
12039
12053
|
# auto_pause: false,
|
12040
12054
|
# seconds_until_auto_pause: 1,
|
12041
12055
|
# },
|
12056
|
+
# db_cluster_parameter_group_name: "String",
|
12042
12057
|
# deletion_protection: false,
|
12043
12058
|
# })
|
12044
12059
|
#
|
@@ -12146,7 +12161,7 @@ module Aws::RDS
|
|
12146
12161
|
#
|
12147
12162
|
# * First character must be a letter
|
12148
12163
|
#
|
12149
|
-
# *
|
12164
|
+
# * Can't end with a hyphen or contain two consecutive hyphens
|
12150
12165
|
#
|
12151
12166
|
# @option params [String] :restore_type
|
12152
12167
|
# The type of restore to be performed. You can specify one of the
|
@@ -12186,9 +12201,9 @@ module Aws::RDS
|
|
12186
12201
|
# * Must be specified if `UseLatestRestorableTime` parameter is not
|
12187
12202
|
# provided
|
12188
12203
|
#
|
12189
|
-
# *
|
12204
|
+
# * Can't be specified if `UseLatestRestorableTime` parameter is true
|
12190
12205
|
#
|
12191
|
-
# *
|
12206
|
+
# * Can't be specified if `RestoreType` parameter is `copy-on-write`
|
12192
12207
|
#
|
12193
12208
|
# Example: `2015-03-07T23:45:00Z`
|
12194
12209
|
#
|
@@ -12198,7 +12213,7 @@ module Aws::RDS
|
|
12198
12213
|
#
|
12199
12214
|
# Default: `false`
|
12200
12215
|
#
|
12201
|
-
# Constraints:
|
12216
|
+
# Constraints: Can't be specified if `RestoreToTime` parameter is
|
12202
12217
|
# provided.
|
12203
12218
|
#
|
12204
12219
|
# @option params [Integer] :port
|
@@ -12245,8 +12260,8 @@ module Aws::RDS
|
|
12245
12260
|
# source DB cluster. The new DB cluster is encrypted with the KMS key
|
12246
12261
|
# identified by the `KmsKeyId` parameter.
|
12247
12262
|
#
|
12248
|
-
# If you
|
12249
|
-
# following
|
12263
|
+
# If you don't specify a value for the `KmsKeyId` parameter, then the
|
12264
|
+
# following occurs:
|
12250
12265
|
#
|
12251
12266
|
# * If the DB cluster is encrypted, then the restored DB cluster is
|
12252
12267
|
# encrypted using the KMS key that was used to encrypt the source DB
|
@@ -12287,6 +12302,22 @@ module Aws::RDS
|
|
12287
12302
|
#
|
12288
12303
|
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
12289
12304
|
#
|
12305
|
+
# @option params [String] :db_cluster_parameter_group_name
|
12306
|
+
# The name of the DB cluster parameter group to associate with this DB
|
12307
|
+
# cluster. If this argument is omitted, the default DB cluster parameter
|
12308
|
+
# group for the specified engine is used.
|
12309
|
+
#
|
12310
|
+
# Constraints:
|
12311
|
+
#
|
12312
|
+
# * If supplied, must match the name of an existing DB cluster parameter
|
12313
|
+
# group.
|
12314
|
+
#
|
12315
|
+
# * Must be 1 to 255 letters, numbers, or hyphens.
|
12316
|
+
#
|
12317
|
+
# * First character must be a letter.
|
12318
|
+
#
|
12319
|
+
# * Can't end with a hyphen or contain two consecutive hyphens.
|
12320
|
+
#
|
12290
12321
|
# @option params [Boolean] :deletion_protection
|
12291
12322
|
# Indicates if the DB cluster should have deletion protection enabled.
|
12292
12323
|
# The database can't be deleted when this value is set to true. The
|
@@ -12335,6 +12366,7 @@ module Aws::RDS
|
|
12335
12366
|
# enable_iam_database_authentication: false,
|
12336
12367
|
# backtrack_window: 1,
|
12337
12368
|
# enable_cloudwatch_logs_exports: ["String"],
|
12369
|
+
# db_cluster_parameter_group_name: "String",
|
12338
12370
|
# deletion_protection: false,
|
12339
12371
|
# })
|
12340
12372
|
#
|
@@ -12447,7 +12479,7 @@ module Aws::RDS
|
|
12447
12479
|
#
|
12448
12480
|
# * First character must be a letter
|
12449
12481
|
#
|
12450
|
-
# *
|
12482
|
+
# * Can't end with a hyphen or contain two consecutive hyphens
|
12451
12483
|
#
|
12452
12484
|
# Example: `my-snapshot-id`
|
12453
12485
|
#
|
@@ -12661,6 +12693,21 @@ module Aws::RDS
|
|
12661
12693
|
# A value that specifies that the DB instance class of the DB instance
|
12662
12694
|
# uses its default processor features.
|
12663
12695
|
#
|
12696
|
+
# @option params [String] :db_parameter_group_name
|
12697
|
+
# The name of the DB parameter group to associate with this DB instance.
|
12698
|
+
# If this argument is omitted, the default DBParameterGroup for the
|
12699
|
+
# specified engine is used.
|
12700
|
+
#
|
12701
|
+
# Constraints:
|
12702
|
+
#
|
12703
|
+
# * If supplied, must match the name of an existing DBParameterGroup.
|
12704
|
+
#
|
12705
|
+
# * Must be 1 to 255 letters, numbers, or hyphens.
|
12706
|
+
#
|
12707
|
+
# * First character must be a letter.
|
12708
|
+
#
|
12709
|
+
# * Can't end with a hyphen or contain two consecutive hyphens.
|
12710
|
+
#
|
12664
12711
|
# @option params [Boolean] :deletion_protection
|
12665
12712
|
# Indicates if the DB instance should have deletion protection enabled.
|
12666
12713
|
# The database can't be deleted when this value is set to true. The
|
@@ -12808,6 +12855,7 @@ module Aws::RDS
|
|
12808
12855
|
# },
|
12809
12856
|
# ],
|
12810
12857
|
# use_default_processor_features: false,
|
12858
|
+
# db_parameter_group_name: "String",
|
12811
12859
|
# deletion_protection: false,
|
12812
12860
|
# })
|
12813
12861
|
#
|
@@ -12953,7 +13001,7 @@ module Aws::RDS
|
|
12953
13001
|
#
|
12954
13002
|
# * First character must be a letter.
|
12955
13003
|
#
|
12956
|
-
# *
|
13004
|
+
# * Can't end with a hyphen or contain two consecutive hyphens.
|
12957
13005
|
#
|
12958
13006
|
# Example: `mydbinstance`
|
12959
13007
|
#
|
@@ -12995,7 +13043,7 @@ module Aws::RDS
|
|
12995
13043
|
#
|
12996
13044
|
# * First character must be a letter.
|
12997
13045
|
#
|
12998
|
-
# *
|
13046
|
+
# * Can't be a reserved word for the chosen database engine.
|
12999
13047
|
#
|
13000
13048
|
# @option params [String] :master_user_password
|
13001
13049
|
# The password for the master user. The password can include any
|
@@ -13492,7 +13540,7 @@ module Aws::RDS
|
|
13492
13540
|
#
|
13493
13541
|
# * First character must be a letter
|
13494
13542
|
#
|
13495
|
-
# *
|
13543
|
+
# * Can't end with a hyphen or contain two consecutive hyphens
|
13496
13544
|
#
|
13497
13545
|
# @option params [Time,DateTime,Date,Integer,String] :restore_time
|
13498
13546
|
# The date and time to restore from.
|
@@ -13504,7 +13552,7 @@ module Aws::RDS
|
|
13504
13552
|
#
|
13505
13553
|
# * Must be before the latest restorable time for the DB instance
|
13506
13554
|
#
|
13507
|
-
# *
|
13555
|
+
# * Can't be specified if UseLatestRestorableTime parameter is true
|
13508
13556
|
#
|
13509
13557
|
# Example: `2009-09-07T23:45:00Z`
|
13510
13558
|
#
|
@@ -13514,7 +13562,7 @@ module Aws::RDS
|
|
13514
13562
|
#
|
13515
13563
|
# Default: `false`
|
13516
13564
|
#
|
13517
|
-
# Constraints:
|
13565
|
+
# Constraints: Can't be specified if RestoreTime parameter is provided.
|
13518
13566
|
#
|
13519
13567
|
# @option params [String] :db_instance_class
|
13520
13568
|
# The compute and memory capacity of the Amazon RDS DB instance, for
|
@@ -13705,6 +13753,21 @@ module Aws::RDS
|
|
13705
13753
|
# A value that specifies that the DB instance class of the DB instance
|
13706
13754
|
# uses its default processor features.
|
13707
13755
|
#
|
13756
|
+
# @option params [String] :db_parameter_group_name
|
13757
|
+
# The name of the DB parameter group to associate with this DB instance.
|
13758
|
+
# If this argument is omitted, the default DBParameterGroup for the
|
13759
|
+
# specified engine is used.
|
13760
|
+
#
|
13761
|
+
# Constraints:
|
13762
|
+
#
|
13763
|
+
# * If supplied, must match the name of an existing DBParameterGroup.
|
13764
|
+
#
|
13765
|
+
# * Must be 1 to 255 letters, numbers, or hyphens.
|
13766
|
+
#
|
13767
|
+
# * First character must be a letter.
|
13768
|
+
#
|
13769
|
+
# * Can't end with a hyphen or contain two consecutive hyphens.
|
13770
|
+
#
|
13708
13771
|
# @option params [Boolean] :deletion_protection
|
13709
13772
|
# Indicates if the DB instance should have deletion protection enabled.
|
13710
13773
|
# The database can't be deleted when this value is set to true. The
|
@@ -13855,6 +13918,7 @@ module Aws::RDS
|
|
13855
13918
|
# },
|
13856
13919
|
# ],
|
13857
13920
|
# use_default_processor_features: false,
|
13921
|
+
# db_parameter_group_name: "String",
|
13858
13922
|
# deletion_protection: false,
|
13859
13923
|
# })
|
13860
13924
|
#
|
@@ -14571,7 +14635,7 @@ module Aws::RDS
|
|
14571
14635
|
params: params,
|
14572
14636
|
config: config)
|
14573
14637
|
context[:gem_name] = 'aws-sdk-rds'
|
14574
|
-
context[:gem_version] = '1.
|
14638
|
+
context[:gem_version] = '1.33.0'
|
14575
14639
|
Seahorse::Client::Request.new(handlers, context)
|
14576
14640
|
end
|
14577
14641
|
|