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
@@ -249,13 +249,13 @@ module Aws::RDS
|
|
249
249
|
#
|
250
250
|
# Constraints:
|
251
251
|
#
|
252
|
-
# *
|
252
|
+
# * Can't be null, empty, or blank
|
253
253
|
#
|
254
254
|
# * Must contain from 1 to 255 letters, numbers, or hyphens
|
255
255
|
#
|
256
256
|
# * First character must be a letter
|
257
257
|
#
|
258
|
-
# *
|
258
|
+
# * Can't end with a hyphen or contain two consecutive hyphens
|
259
259
|
#
|
260
260
|
# Example: `my-db-parameter-group`
|
261
261
|
# @option options [required, String] :target_db_parameter_group_description
|
@@ -391,13 +391,13 @@ module Aws::RDS
|
|
391
391
|
#
|
392
392
|
# Constraints:
|
393
393
|
#
|
394
|
-
# *
|
394
|
+
# * Can't be null, empty, or blank
|
395
395
|
#
|
396
396
|
# * Must contain from 1 to 255 letters, numbers, or hyphens
|
397
397
|
#
|
398
398
|
# * First character must be a letter
|
399
399
|
#
|
400
|
-
# *
|
400
|
+
# * Can't end with a hyphen or contain two consecutive hyphens
|
401
401
|
#
|
402
402
|
# Example: `my-db-snapshot`
|
403
403
|
# @option options [String] :kms_key_id
|
@@ -562,6 +562,7 @@ module Aws::RDS
|
|
562
562
|
# },
|
563
563
|
# ],
|
564
564
|
# use_default_processor_features: false,
|
565
|
+
# db_parameter_group_name: "String",
|
565
566
|
# deletion_protection: false,
|
566
567
|
# })
|
567
568
|
# @param [Hash] options ({})
|
@@ -575,7 +576,7 @@ module Aws::RDS
|
|
575
576
|
#
|
576
577
|
# * First character must be a letter
|
577
578
|
#
|
578
|
-
# *
|
579
|
+
# * Can't end with a hyphen or contain two consecutive hyphens
|
579
580
|
#
|
580
581
|
# Example: `my-snapshot-id`
|
581
582
|
# @option options [String] :db_instance_class
|
@@ -755,6 +756,20 @@ module Aws::RDS
|
|
755
756
|
# @option options [Boolean] :use_default_processor_features
|
756
757
|
# A value that specifies that the DB instance class of the DB instance
|
757
758
|
# uses its default processor features.
|
759
|
+
# @option options [String] :db_parameter_group_name
|
760
|
+
# The name of the DB parameter group to associate with this DB instance.
|
761
|
+
# If this argument is omitted, the default DBParameterGroup for the
|
762
|
+
# specified engine is used.
|
763
|
+
#
|
764
|
+
# Constraints:
|
765
|
+
#
|
766
|
+
# * If supplied, must match the name of an existing DBParameterGroup.
|
767
|
+
#
|
768
|
+
# * Must be 1 to 255 letters, numbers, or hyphens.
|
769
|
+
#
|
770
|
+
# * First character must be a letter.
|
771
|
+
#
|
772
|
+
# * Can't end with a hyphen or contain two consecutive hyphens.
|
758
773
|
# @option options [Boolean] :deletion_protection
|
759
774
|
# Indicates if the DB instance should have deletion protection enabled.
|
760
775
|
# The database can't be deleted when this value is set to true. The
|
@@ -271,13 +271,13 @@ module Aws::RDS
|
|
271
271
|
#
|
272
272
|
# Constraints:
|
273
273
|
#
|
274
|
-
# *
|
274
|
+
# * Can't be null, empty, or blank
|
275
275
|
#
|
276
276
|
# * Must contain from 1 to 255 letters, numbers, or hyphens
|
277
277
|
#
|
278
278
|
# * First character must be a letter
|
279
279
|
#
|
280
|
-
# *
|
280
|
+
# * Can't end with a hyphen or contain two consecutive hyphens
|
281
281
|
#
|
282
282
|
# Example: `my-option-group`
|
283
283
|
# @option options [required, String] :target_option_group_description
|
data/lib/aws-sdk-rds/resource.rb
CHANGED
@@ -101,7 +101,7 @@ module Aws::RDS
|
|
101
101
|
#
|
102
102
|
# * First character must be a letter.
|
103
103
|
#
|
104
|
-
# *
|
104
|
+
# * Can't end with a hyphen or contain two consecutive hyphens.
|
105
105
|
#
|
106
106
|
# Example: `my-cluster1`
|
107
107
|
# @option options [String] :db_cluster_parameter_group_name
|
@@ -110,8 +110,8 @@ module Aws::RDS
|
|
110
110
|
#
|
111
111
|
# Constraints:
|
112
112
|
#
|
113
|
-
# * If supplied, must match the name of an existing
|
114
|
-
#
|
113
|
+
# * If supplied, must match the name of an existing DB cluster parameter
|
114
|
+
# group.
|
115
115
|
#
|
116
116
|
# ^
|
117
117
|
# @option options [Array<String>] :vpc_security_group_ids
|
@@ -154,7 +154,7 @@ module Aws::RDS
|
|
154
154
|
#
|
155
155
|
# * First character must be a letter.
|
156
156
|
#
|
157
|
-
# *
|
157
|
+
# * Can't be a reserved word for the chosen database engine.
|
158
158
|
# @option options [String] :master_user_password
|
159
159
|
# The password for the master database user. This password can contain
|
160
160
|
# any printable ASCII character except "/", """, or "@".
|
@@ -355,7 +355,7 @@ module Aws::RDS
|
|
355
355
|
#
|
356
356
|
# Constraints:
|
357
357
|
#
|
358
|
-
# * Must match the name of an existing
|
358
|
+
# * Must match the name of an existing DB cluster parameter group.
|
359
359
|
#
|
360
360
|
# ^
|
361
361
|
#
|
@@ -471,7 +471,7 @@ module Aws::RDS
|
|
471
471
|
#
|
472
472
|
# * Must contain 1 to 64 letters or numbers.
|
473
473
|
#
|
474
|
-
# *
|
474
|
+
# * Can't be a word reserved by the specified database engine
|
475
475
|
#
|
476
476
|
# **MariaDB**
|
477
477
|
#
|
@@ -483,7 +483,7 @@ module Aws::RDS
|
|
483
483
|
#
|
484
484
|
# * Must contain 1 to 64 letters or numbers.
|
485
485
|
#
|
486
|
-
# *
|
486
|
+
# * Can't be a word reserved by the specified database engine
|
487
487
|
#
|
488
488
|
# **PostgreSQL**
|
489
489
|
#
|
@@ -498,7 +498,7 @@ module Aws::RDS
|
|
498
498
|
# * Must begin with a letter or an underscore. Subsequent characters can
|
499
499
|
# be letters, underscores, or digits (0-9).
|
500
500
|
#
|
501
|
-
# *
|
501
|
+
# * Can't be a word reserved by the specified database engine
|
502
502
|
#
|
503
503
|
# **Oracle**
|
504
504
|
#
|
@@ -510,7 +510,7 @@ module Aws::RDS
|
|
510
510
|
#
|
511
511
|
# Constraints:
|
512
512
|
#
|
513
|
-
# *
|
513
|
+
# * Can't be longer than 8 characters
|
514
514
|
#
|
515
515
|
# ^
|
516
516
|
#
|
@@ -528,7 +528,7 @@ module Aws::RDS
|
|
528
528
|
#
|
529
529
|
# * Must contain 1 to 64 letters or numbers.
|
530
530
|
#
|
531
|
-
# *
|
531
|
+
# * Can't be a word reserved by the specified database engine
|
532
532
|
# @option options [required, String] :db_instance_identifier
|
533
533
|
# The DB instance identifier. This parameter is stored as a lowercase
|
534
534
|
# string.
|
@@ -539,7 +539,7 @@ module Aws::RDS
|
|
539
539
|
#
|
540
540
|
# * First character must be a letter.
|
541
541
|
#
|
542
|
-
# *
|
542
|
+
# * Can't end with a hyphen or contain two consecutive hyphens.
|
543
543
|
#
|
544
544
|
# Example: `mydbinstance`
|
545
545
|
# @option options [Integer] :allocated_storage
|
@@ -690,7 +690,7 @@ module Aws::RDS
|
|
690
690
|
#
|
691
691
|
# * Must be 1 to 16 letters or numbers.
|
692
692
|
#
|
693
|
-
# *
|
693
|
+
# * Can't be a reserved word for the chosen database engine.
|
694
694
|
#
|
695
695
|
# **Microsoft SQL Server**
|
696
696
|
#
|
@@ -702,7 +702,7 @@ module Aws::RDS
|
|
702
702
|
#
|
703
703
|
# * The first character must be a letter.
|
704
704
|
#
|
705
|
-
# *
|
705
|
+
# * Can't be a reserved word for the chosen database engine.
|
706
706
|
#
|
707
707
|
# **MySQL**
|
708
708
|
#
|
@@ -714,7 +714,7 @@ module Aws::RDS
|
|
714
714
|
#
|
715
715
|
# * First character must be a letter.
|
716
716
|
#
|
717
|
-
# *
|
717
|
+
# * Can't be a reserved word for the chosen database engine.
|
718
718
|
#
|
719
719
|
# **Oracle**
|
720
720
|
#
|
@@ -726,7 +726,7 @@ module Aws::RDS
|
|
726
726
|
#
|
727
727
|
# * First character must be a letter.
|
728
728
|
#
|
729
|
-
# *
|
729
|
+
# * Can't be a reserved word for the chosen database engine.
|
730
730
|
#
|
731
731
|
# **PostgreSQL**
|
732
732
|
#
|
@@ -738,7 +738,7 @@ module Aws::RDS
|
|
738
738
|
#
|
739
739
|
# * First character must be a letter.
|
740
740
|
#
|
741
|
-
# *
|
741
|
+
# * Can't be a reserved word for the chosen database engine.
|
742
742
|
# @option options [String] :master_user_password
|
743
743
|
# The password for the master user. The password can include any
|
744
744
|
# printable ASCII character except "/", """, or "@".
|
@@ -831,7 +831,7 @@ module Aws::RDS
|
|
831
831
|
#
|
832
832
|
# * First character must be a letter
|
833
833
|
#
|
834
|
-
# *
|
834
|
+
# * Can't end with a hyphen or contain two consecutive hyphens
|
835
835
|
# @option options [Integer] :backup_retention_period
|
836
836
|
# The number of days for which automated backups are retained. Setting
|
837
837
|
# this parameter to a positive number enables backups. Setting this
|
@@ -848,7 +848,7 @@ module Aws::RDS
|
|
848
848
|
#
|
849
849
|
# * Must be a value from 0 to 35
|
850
850
|
#
|
851
|
-
# *
|
851
|
+
# * Can't be set to 0 if the DB instance is a source to Read Replicas
|
852
852
|
# @option options [String] :preferred_backup_window
|
853
853
|
# The daily time range during which automated backups are created if
|
854
854
|
# automated backups are enabled, using the `BackupRetentionPeriod`
|
@@ -993,9 +993,7 @@ module Aws::RDS
|
|
993
993
|
# Improve Performance][1] in the *Amazon RDS User Guide*.
|
994
994
|
#
|
995
995
|
# Constraints: Must be a multiple between 1 and 50 of the storage amount
|
996
|
-
# for the DB instance.
|
997
|
-
# example, if the size of your DB instance is 500 GiB, then your `Iops`
|
998
|
-
# value can be 2000, 3000, 4000, or 5000.
|
996
|
+
# for the DB instance.
|
999
997
|
#
|
1000
998
|
#
|
1001
999
|
#
|
@@ -1241,7 +1239,7 @@ module Aws::RDS
|
|
1241
1239
|
#
|
1242
1240
|
# * First character must be a letter
|
1243
1241
|
#
|
1244
|
-
# *
|
1242
|
+
# * Can't end with a hyphen or contain two consecutive hyphens
|
1245
1243
|
#
|
1246
1244
|
# <note markdown="1"> This value is stored as a lowercase string.
|
1247
1245
|
#
|
@@ -1303,7 +1301,7 @@ module Aws::RDS
|
|
1303
1301
|
#
|
1304
1302
|
# * First character must be a letter
|
1305
1303
|
#
|
1306
|
-
# *
|
1304
|
+
# * Can't end with a hyphen or contain two consecutive hyphens
|
1307
1305
|
#
|
1308
1306
|
# * Must not be "Default"
|
1309
1307
|
#
|
@@ -1478,7 +1476,7 @@ module Aws::RDS
|
|
1478
1476
|
#
|
1479
1477
|
# * First character must be a letter
|
1480
1478
|
#
|
1481
|
-
# *
|
1479
|
+
# * Can't end with a hyphen or contain two consecutive hyphens
|
1482
1480
|
#
|
1483
1481
|
# Example: `myoptiongroup`
|
1484
1482
|
# @option options [required, String] :engine_name
|
@@ -2245,7 +2243,7 @@ module Aws::RDS
|
|
2245
2243
|
# * If the source type is `DBSnapshot`, a `DBSnapshotIdentifier` must be
|
2246
2244
|
# supplied.
|
2247
2245
|
#
|
2248
|
-
# *
|
2246
|
+
# * Can't end with a hyphen or contain two consecutive hyphens.
|
2249
2247
|
# @option options [String] :source_type
|
2250
2248
|
# The event source to retrieve events for. If no value is specified, all
|
2251
2249
|
# events are returned.
|
@@ -2322,7 +2320,7 @@ module Aws::RDS
|
|
2322
2320
|
# })
|
2323
2321
|
# @param [Hash] options ({})
|
2324
2322
|
# @option options [String] :option_group_name
|
2325
|
-
# The name of the option group to describe.
|
2323
|
+
# The name of the option group to describe. Can't be supplied together
|
2326
2324
|
# with EngineName or MajorEngineVersion.
|
2327
2325
|
# @option options [Array<Types::Filter>] :filters
|
2328
2326
|
# This parameter is not currently supported.
|
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -360,7 +360,7 @@ module Aws::RDS
|
|
360
360
|
#
|
361
361
|
# * First character must be a letter.
|
362
362
|
#
|
363
|
-
# *
|
363
|
+
# * Can't end with a hyphen or contain two consecutive hyphens.
|
364
364
|
#
|
365
365
|
# Example: `my-cluster1`
|
366
366
|
# @return [String]
|
@@ -380,7 +380,7 @@ module Aws::RDS
|
|
380
380
|
#
|
381
381
|
# * Must contain a valid ISO 8601 timestamp.
|
382
382
|
#
|
383
|
-
# *
|
383
|
+
# * Can't contain a timestamp set in the future.
|
384
384
|
#
|
385
385
|
# Example: `2017-07-08T18:00Z`
|
386
386
|
#
|
@@ -570,13 +570,13 @@ module Aws::RDS
|
|
570
570
|
#
|
571
571
|
# Constraints:
|
572
572
|
#
|
573
|
-
# *
|
573
|
+
# * Can't be null, empty, or blank
|
574
574
|
#
|
575
575
|
# * Must contain from 1 to 255 letters, numbers, or hyphens
|
576
576
|
#
|
577
577
|
# * First character must be a letter
|
578
578
|
#
|
579
|
-
# *
|
579
|
+
# * Can't end with a hyphen or contain two consecutive hyphens
|
580
580
|
#
|
581
581
|
# Example: `my-cluster-param-group1`
|
582
582
|
# @return [String]
|
@@ -672,7 +672,7 @@ module Aws::RDS
|
|
672
672
|
#
|
673
673
|
# * First character must be a letter.
|
674
674
|
#
|
675
|
-
# *
|
675
|
+
# * Can't end with a hyphen or contain two consecutive hyphens.
|
676
676
|
#
|
677
677
|
# Example: `my-cluster-snapshot2`
|
678
678
|
# @return [String]
|
@@ -831,13 +831,13 @@ module Aws::RDS
|
|
831
831
|
#
|
832
832
|
# Constraints:
|
833
833
|
#
|
834
|
-
# *
|
834
|
+
# * Can't be null, empty, or blank
|
835
835
|
#
|
836
836
|
# * Must contain from 1 to 255 letters, numbers, or hyphens
|
837
837
|
#
|
838
838
|
# * First character must be a letter
|
839
839
|
#
|
840
|
-
# *
|
840
|
+
# * Can't end with a hyphen or contain two consecutive hyphens
|
841
841
|
#
|
842
842
|
# Example: `my-db-parameter-group`
|
843
843
|
# @return [String]
|
@@ -933,13 +933,13 @@ module Aws::RDS
|
|
933
933
|
#
|
934
934
|
# Constraints:
|
935
935
|
#
|
936
|
-
# *
|
936
|
+
# * Can't be null, empty, or blank
|
937
937
|
#
|
938
938
|
# * Must contain from 1 to 255 letters, numbers, or hyphens
|
939
939
|
#
|
940
940
|
# * First character must be a letter
|
941
941
|
#
|
942
|
-
# *
|
942
|
+
# * Can't end with a hyphen or contain two consecutive hyphens
|
943
943
|
#
|
944
944
|
# Example: `my-db-snapshot`
|
945
945
|
# @return [String]
|
@@ -1130,13 +1130,13 @@ module Aws::RDS
|
|
1130
1130
|
#
|
1131
1131
|
# Constraints:
|
1132
1132
|
#
|
1133
|
-
# *
|
1133
|
+
# * Can't be null, empty, or blank
|
1134
1134
|
#
|
1135
1135
|
# * Must contain from 1 to 255 letters, numbers, or hyphens
|
1136
1136
|
#
|
1137
1137
|
# * First character must be a letter
|
1138
1138
|
#
|
1139
|
-
# *
|
1139
|
+
# * Can't end with a hyphen or contain two consecutive hyphens
|
1140
1140
|
#
|
1141
1141
|
# Example: `my-option-group`
|
1142
1142
|
# @return [String]
|
@@ -1263,7 +1263,7 @@ module Aws::RDS
|
|
1263
1263
|
#
|
1264
1264
|
# * First character must be a letter.
|
1265
1265
|
#
|
1266
|
-
# *
|
1266
|
+
# * Can't end with a hyphen or contain two consecutive hyphens.
|
1267
1267
|
#
|
1268
1268
|
# Example: `my-cluster1`
|
1269
1269
|
# @return [String]
|
@@ -1274,8 +1274,8 @@ module Aws::RDS
|
|
1274
1274
|
#
|
1275
1275
|
# Constraints:
|
1276
1276
|
#
|
1277
|
-
# * If supplied, must match the name of an existing
|
1278
|
-
#
|
1277
|
+
# * If supplied, must match the name of an existing DB cluster
|
1278
|
+
# parameter group.
|
1279
1279
|
#
|
1280
1280
|
# ^
|
1281
1281
|
# @return [String]
|
@@ -1330,7 +1330,7 @@ module Aws::RDS
|
|
1330
1330
|
#
|
1331
1331
|
# * First character must be a letter.
|
1332
1332
|
#
|
1333
|
-
# *
|
1333
|
+
# * Can't be a reserved word for the chosen database engine.
|
1334
1334
|
# @return [String]
|
1335
1335
|
#
|
1336
1336
|
# @!attribute [rw] master_user_password
|
@@ -1595,7 +1595,7 @@ module Aws::RDS
|
|
1595
1595
|
#
|
1596
1596
|
# Constraints:
|
1597
1597
|
#
|
1598
|
-
# * Must match the name of an existing
|
1598
|
+
# * Must match the name of an existing DB cluster parameter group.
|
1599
1599
|
#
|
1600
1600
|
# ^
|
1601
1601
|
#
|
@@ -1695,7 +1695,7 @@ module Aws::RDS
|
|
1695
1695
|
#
|
1696
1696
|
# * First character must be a letter.
|
1697
1697
|
#
|
1698
|
-
# *
|
1698
|
+
# * Can't end with a hyphen or contain two consecutive hyphens.
|
1699
1699
|
#
|
1700
1700
|
# Example: `my-cluster1-snapshot1`
|
1701
1701
|
# @return [String]
|
@@ -1817,7 +1817,7 @@ module Aws::RDS
|
|
1817
1817
|
#
|
1818
1818
|
# * Must contain 1 to 64 letters or numbers.
|
1819
1819
|
#
|
1820
|
-
# *
|
1820
|
+
# * Can't be a word reserved by the specified database engine
|
1821
1821
|
#
|
1822
1822
|
# **MariaDB**
|
1823
1823
|
#
|
@@ -1829,7 +1829,7 @@ module Aws::RDS
|
|
1829
1829
|
#
|
1830
1830
|
# * Must contain 1 to 64 letters or numbers.
|
1831
1831
|
#
|
1832
|
-
# *
|
1832
|
+
# * Can't be a word reserved by the specified database engine
|
1833
1833
|
#
|
1834
1834
|
# **PostgreSQL**
|
1835
1835
|
#
|
@@ -1844,7 +1844,7 @@ module Aws::RDS
|
|
1844
1844
|
# * Must begin with a letter or an underscore. Subsequent characters
|
1845
1845
|
# can be letters, underscores, or digits (0-9).
|
1846
1846
|
#
|
1847
|
-
# *
|
1847
|
+
# * Can't be a word reserved by the specified database engine
|
1848
1848
|
#
|
1849
1849
|
# **Oracle**
|
1850
1850
|
#
|
@@ -1856,7 +1856,7 @@ module Aws::RDS
|
|
1856
1856
|
#
|
1857
1857
|
# Constraints:
|
1858
1858
|
#
|
1859
|
-
# *
|
1859
|
+
# * Can't be longer than 8 characters
|
1860
1860
|
#
|
1861
1861
|
# ^
|
1862
1862
|
#
|
@@ -1874,7 +1874,7 @@ module Aws::RDS
|
|
1874
1874
|
#
|
1875
1875
|
# * Must contain 1 to 64 letters or numbers.
|
1876
1876
|
#
|
1877
|
-
# *
|
1877
|
+
# * Can't be a word reserved by the specified database engine
|
1878
1878
|
# @return [String]
|
1879
1879
|
#
|
1880
1880
|
# @!attribute [rw] db_instance_identifier
|
@@ -1887,7 +1887,7 @@ module Aws::RDS
|
|
1887
1887
|
#
|
1888
1888
|
# * First character must be a letter.
|
1889
1889
|
#
|
1890
|
-
# *
|
1890
|
+
# * Can't end with a hyphen or contain two consecutive hyphens.
|
1891
1891
|
#
|
1892
1892
|
# Example: `mydbinstance`
|
1893
1893
|
# @return [String]
|
@@ -2047,7 +2047,7 @@ module Aws::RDS
|
|
2047
2047
|
#
|
2048
2048
|
# * Must be 1 to 16 letters or numbers.
|
2049
2049
|
#
|
2050
|
-
# *
|
2050
|
+
# * Can't be a reserved word for the chosen database engine.
|
2051
2051
|
#
|
2052
2052
|
# **Microsoft SQL Server**
|
2053
2053
|
#
|
@@ -2059,7 +2059,7 @@ module Aws::RDS
|
|
2059
2059
|
#
|
2060
2060
|
# * The first character must be a letter.
|
2061
2061
|
#
|
2062
|
-
# *
|
2062
|
+
# * Can't be a reserved word for the chosen database engine.
|
2063
2063
|
#
|
2064
2064
|
# **MySQL**
|
2065
2065
|
#
|
@@ -2071,7 +2071,7 @@ module Aws::RDS
|
|
2071
2071
|
#
|
2072
2072
|
# * First character must be a letter.
|
2073
2073
|
#
|
2074
|
-
# *
|
2074
|
+
# * Can't be a reserved word for the chosen database engine.
|
2075
2075
|
#
|
2076
2076
|
# **Oracle**
|
2077
2077
|
#
|
@@ -2083,7 +2083,7 @@ module Aws::RDS
|
|
2083
2083
|
#
|
2084
2084
|
# * First character must be a letter.
|
2085
2085
|
#
|
2086
|
-
# *
|
2086
|
+
# * Can't be a reserved word for the chosen database engine.
|
2087
2087
|
#
|
2088
2088
|
# **PostgreSQL**
|
2089
2089
|
#
|
@@ -2095,7 +2095,7 @@ module Aws::RDS
|
|
2095
2095
|
#
|
2096
2096
|
# * First character must be a letter.
|
2097
2097
|
#
|
2098
|
-
# *
|
2098
|
+
# * Can't be a reserved word for the chosen database engine.
|
2099
2099
|
# @return [String]
|
2100
2100
|
#
|
2101
2101
|
# @!attribute [rw] master_user_password
|
@@ -2204,7 +2204,7 @@ module Aws::RDS
|
|
2204
2204
|
#
|
2205
2205
|
# * First character must be a letter
|
2206
2206
|
#
|
2207
|
-
# *
|
2207
|
+
# * Can't end with a hyphen or contain two consecutive hyphens
|
2208
2208
|
# @return [String]
|
2209
2209
|
#
|
2210
2210
|
# @!attribute [rw] backup_retention_period
|
@@ -2224,7 +2224,7 @@ module Aws::RDS
|
|
2224
2224
|
#
|
2225
2225
|
# * Must be a value from 0 to 35
|
2226
2226
|
#
|
2227
|
-
# *
|
2227
|
+
# * Can't be set to 0 if the DB instance is a source to Read Replicas
|
2228
2228
|
# @return [Integer]
|
2229
2229
|
#
|
2230
2230
|
# @!attribute [rw] preferred_backup_window
|
@@ -2385,9 +2385,7 @@ module Aws::RDS
|
|
2385
2385
|
# Improve Performance][1] in the *Amazon RDS User Guide*.
|
2386
2386
|
#
|
2387
2387
|
# Constraints: Must be a multiple between 1 and 50 of the storage
|
2388
|
-
# amount for the DB instance.
|
2389
|
-
# 1000. For example, if the size of your DB instance is 500 GiB, then
|
2390
|
-
# your `Iops` value can be 2000, 3000, 4000, or 5000.
|
2388
|
+
# amount for the DB instance.
|
2391
2389
|
#
|
2392
2390
|
#
|
2393
2391
|
#
|
@@ -3171,7 +3169,7 @@ module Aws::RDS
|
|
3171
3169
|
#
|
3172
3170
|
# * First character must be a letter
|
3173
3171
|
#
|
3174
|
-
# *
|
3172
|
+
# * Can't end with a hyphen or contain two consecutive hyphens
|
3175
3173
|
#
|
3176
3174
|
# <note markdown="1"> This value is stored as a lowercase string.
|
3177
3175
|
#
|
@@ -3256,7 +3254,7 @@ module Aws::RDS
|
|
3256
3254
|
#
|
3257
3255
|
# * First character must be a letter
|
3258
3256
|
#
|
3259
|
-
# *
|
3257
|
+
# * Can't end with a hyphen or contain two consecutive hyphens
|
3260
3258
|
#
|
3261
3259
|
# * Must not be "Default"
|
3262
3260
|
#
|
@@ -3318,13 +3316,13 @@ module Aws::RDS
|
|
3318
3316
|
#
|
3319
3317
|
# Constraints:
|
3320
3318
|
#
|
3321
|
-
# *
|
3319
|
+
# * Can't be null, empty, or blank
|
3322
3320
|
#
|
3323
3321
|
# * Must contain from 1 to 255 letters, numbers, or hyphens
|
3324
3322
|
#
|
3325
3323
|
# * First character must be a letter
|
3326
3324
|
#
|
3327
|
-
# *
|
3325
|
+
# * Can't end with a hyphen or contain two consecutive hyphens
|
3328
3326
|
#
|
3329
3327
|
# Example: `my-snapshot-id`
|
3330
3328
|
# @return [String]
|
@@ -3577,7 +3575,7 @@ module Aws::RDS
|
|
3577
3575
|
#
|
3578
3576
|
# * First character must be a letter
|
3579
3577
|
#
|
3580
|
-
# *
|
3578
|
+
# * Can't end with a hyphen or contain two consecutive hyphens
|
3581
3579
|
#
|
3582
3580
|
# Example: `myoptiongroup`
|
3583
3581
|
# @return [String]
|
@@ -4165,7 +4163,7 @@ module Aws::RDS
|
|
4165
4163
|
#
|
4166
4164
|
# * First character must be a letter
|
4167
4165
|
#
|
4168
|
-
# *
|
4166
|
+
# * Can't end with a hyphen or contain two consecutive hyphens
|
4169
4167
|
#
|
4170
4168
|
# <note markdown="1"> This value is stored as a lowercase string.
|
4171
4169
|
#
|
@@ -5545,7 +5543,7 @@ module Aws::RDS
|
|
5545
5543
|
#
|
5546
5544
|
# * First character must be a letter
|
5547
5545
|
#
|
5548
|
-
# *
|
5546
|
+
# * Can't end with a hyphen or contain two consecutive hyphens
|
5549
5547
|
# @return [String]
|
5550
5548
|
#
|
5551
5549
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBClusterMessage AWS API Documentation
|
@@ -5573,7 +5571,7 @@ module Aws::RDS
|
|
5573
5571
|
#
|
5574
5572
|
# * You can't delete a default DB cluster parameter group.
|
5575
5573
|
#
|
5576
|
-
# *
|
5574
|
+
# * Can't be associated with any DB clusters.
|
5577
5575
|
# @return [String]
|
5578
5576
|
#
|
5579
5577
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBClusterParameterGroupMessage AWS API Documentation
|
@@ -5688,9 +5686,9 @@ module Aws::RDS
|
|
5688
5686
|
#
|
5689
5687
|
# * First character must be a letter
|
5690
5688
|
#
|
5691
|
-
# *
|
5689
|
+
# * Can't end with a hyphen or contain two consecutive hyphens
|
5692
5690
|
#
|
5693
|
-
# *
|
5691
|
+
# * Can't be specified when deleting a Read Replica.
|
5694
5692
|
# @return [String]
|
5695
5693
|
#
|
5696
5694
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBInstanceMessage AWS API Documentation
|
@@ -5732,7 +5730,7 @@ module Aws::RDS
|
|
5732
5730
|
#
|
5733
5731
|
# * You can't delete a default DB parameter group
|
5734
5732
|
#
|
5735
|
-
# *
|
5733
|
+
# * Can't be associated with any DB instances
|
5736
5734
|
# @return [String]
|
5737
5735
|
#
|
5738
5736
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBParameterGroupMessage AWS API Documentation
|
@@ -5762,7 +5760,7 @@ module Aws::RDS
|
|
5762
5760
|
#
|
5763
5761
|
# * First character must be a letter
|
5764
5762
|
#
|
5765
|
-
# *
|
5763
|
+
# * Can't end with a hyphen or contain two consecutive hyphens
|
5766
5764
|
#
|
5767
5765
|
# * Must not be "Default"
|
5768
5766
|
# @return [String]
|
@@ -5982,7 +5980,7 @@ module Aws::RDS
|
|
5982
5980
|
#
|
5983
5981
|
# * First character must be a letter.
|
5984
5982
|
#
|
5985
|
-
# *
|
5983
|
+
# * Can't end with a hyphen or contain two consecutive hyphens.
|
5986
5984
|
#
|
5987
5985
|
# Example: `my-cluster1`
|
5988
5986
|
# @return [String]
|
@@ -7340,7 +7338,7 @@ module Aws::RDS
|
|
7340
7338
|
# * If the source type is `DBSnapshot`, a `DBSnapshotIdentifier` must
|
7341
7339
|
# be supplied.
|
7342
7340
|
#
|
7343
|
-
# *
|
7341
|
+
# * Can't end with a hyphen or contain two consecutive hyphens.
|
7344
7342
|
# @return [String]
|
7345
7343
|
#
|
7346
7344
|
# @!attribute [rw] source_type
|
@@ -7496,7 +7494,7 @@ module Aws::RDS
|
|
7496
7494
|
# }
|
7497
7495
|
#
|
7498
7496
|
# @!attribute [rw] option_group_name
|
7499
|
-
# The name of the option group to describe.
|
7497
|
+
# The name of the option group to describe. Can't be supplied
|
7500
7498
|
# together with EngineName or MajorEngineVersion.
|
7501
7499
|
# @return [String]
|
7502
7500
|
#
|
@@ -8678,7 +8676,7 @@ module Aws::RDS
|
|
8678
8676
|
#
|
8679
8677
|
# * The first character must be a letter
|
8680
8678
|
#
|
8681
|
-
# *
|
8679
|
+
# * Can't end with a hyphen or contain two consecutive hyphens
|
8682
8680
|
#
|
8683
8681
|
# Example: `my-cluster2`
|
8684
8682
|
# @return [String]
|
@@ -9255,7 +9253,7 @@ module Aws::RDS
|
|
9255
9253
|
# * Can be specified for a PostgreSQL Read Replica only if the source
|
9256
9254
|
# is running PostgreSQL 9.3.5
|
9257
9255
|
#
|
9258
|
-
# *
|
9256
|
+
# * Can't be set to 0 if the DB instance is a source to Read Replicas
|
9259
9257
|
# @return [Integer]
|
9260
9258
|
#
|
9261
9259
|
# @!attribute [rw] preferred_backup_window
|
@@ -9416,7 +9414,7 @@ module Aws::RDS
|
|
9416
9414
|
#
|
9417
9415
|
# * The first character must be a letter.
|
9418
9416
|
#
|
9419
|
-
# *
|
9417
|
+
# * Can't end with a hyphen or contain two consecutive hyphens.
|
9420
9418
|
#
|
9421
9419
|
# Example: `mydbinstance`
|
9422
9420
|
# @return [String]
|
@@ -11873,7 +11871,7 @@ module Aws::RDS
|
|
11873
11871
|
#
|
11874
11872
|
# * First character must be a letter.
|
11875
11873
|
#
|
11876
|
-
# *
|
11874
|
+
# * Can't end with a hyphen or contain two consecutive hyphens.
|
11877
11875
|
#
|
11878
11876
|
# Example: `my-cluster1`
|
11879
11877
|
# @return [String]
|
@@ -11940,7 +11938,7 @@ module Aws::RDS
|
|
11940
11938
|
#
|
11941
11939
|
# * First character must be a letter.
|
11942
11940
|
#
|
11943
|
-
# *
|
11941
|
+
# * Can't be a reserved word for the chosen database engine.
|
11944
11942
|
# @return [String]
|
11945
11943
|
#
|
11946
11944
|
# @!attribute [rw] master_user_password
|
@@ -12183,12 +12181,13 @@ module Aws::RDS
|
|
12183
12181
|
# auto_pause: false,
|
12184
12182
|
# seconds_until_auto_pause: 1,
|
12185
12183
|
# },
|
12184
|
+
# db_cluster_parameter_group_name: "String",
|
12186
12185
|
# deletion_protection: false,
|
12187
12186
|
# }
|
12188
12187
|
#
|
12189
12188
|
# @!attribute [rw] availability_zones
|
12190
|
-
# Provides the list of EC2 Availability Zones that instances in
|
12191
|
-
# restored DB cluster can be created in.
|
12189
|
+
# Provides the list of Amazon EC2 Availability Zones that instances in
|
12190
|
+
# the restored DB cluster can be created in.
|
12192
12191
|
# @return [Array<String>]
|
12193
12192
|
#
|
12194
12193
|
# @!attribute [rw] db_cluster_identifier
|
@@ -12201,7 +12200,7 @@ module Aws::RDS
|
|
12201
12200
|
#
|
12202
12201
|
# * First character must be a letter
|
12203
12202
|
#
|
12204
|
-
# *
|
12203
|
+
# * Can't end with a hyphen or contain two consecutive hyphens
|
12205
12204
|
#
|
12206
12205
|
# Example: `my-snapshot-id`
|
12207
12206
|
# @return [String]
|
@@ -12236,7 +12235,7 @@ module Aws::RDS
|
|
12236
12235
|
# @!attribute [rw] port
|
12237
12236
|
# The port number on which the new DB cluster accepts connections.
|
12238
12237
|
#
|
12239
|
-
# Constraints:
|
12238
|
+
# Constraints: This value must be `1150-65535`
|
12240
12239
|
#
|
12241
12240
|
# Default: The same port as the original DB cluster.
|
12242
12241
|
# @return [Integer]
|
@@ -12244,8 +12243,8 @@ module Aws::RDS
|
|
12244
12243
|
# @!attribute [rw] db_subnet_group_name
|
12245
12244
|
# The name of the DB subnet group to use for the new DB cluster.
|
12246
12245
|
#
|
12247
|
-
# Constraints: If supplied, must match the name of an existing
|
12248
|
-
#
|
12246
|
+
# Constraints: If supplied, must match the name of an existing DB
|
12247
|
+
# subnet group.
|
12249
12248
|
#
|
12250
12249
|
# Example: `mySubnetgroup`
|
12251
12250
|
# @return [String]
|
@@ -12277,8 +12276,8 @@ module Aws::RDS
|
|
12277
12276
|
# cluster, then you can use the KMS key alias instead of the ARN for
|
12278
12277
|
# the KMS encryption key.
|
12279
12278
|
#
|
12280
|
-
# If you
|
12281
|
-
# following
|
12279
|
+
# If you don't specify a value for the `KmsKeyId` parameter, then the
|
12280
|
+
# following occurs:
|
12282
12281
|
#
|
12283
12282
|
# * If the DB snapshot or DB cluster snapshot in `SnapshotIdentifier`
|
12284
12283
|
# is encrypted, then the restored DB cluster is encrypted using the
|
@@ -12311,7 +12310,7 @@ module Aws::RDS
|
|
12311
12310
|
# @return [Integer]
|
12312
12311
|
#
|
12313
12312
|
# @!attribute [rw] enable_cloudwatch_logs_exports
|
12314
|
-
# The list of logs that the restored DB cluster is to export to
|
12313
|
+
# The list of logs that the restored DB cluster is to export to Amazon
|
12315
12314
|
# CloudWatch Logs. The values in the list depend on the DB engine
|
12316
12315
|
# being used. For more information, see [Publishing Database Logs to
|
12317
12316
|
# Amazon CloudWatch Logs ][1] in the *Amazon Aurora User Guide*.
|
@@ -12331,6 +12330,23 @@ module Aws::RDS
|
|
12331
12330
|
# properties of the DB cluster.
|
12332
12331
|
# @return [Types::ScalingConfiguration]
|
12333
12332
|
#
|
12333
|
+
# @!attribute [rw] db_cluster_parameter_group_name
|
12334
|
+
# The name of the DB cluster parameter group to associate with this DB
|
12335
|
+
# cluster. If this argument is omitted, the default DB cluster
|
12336
|
+
# parameter group for the specified engine is used.
|
12337
|
+
#
|
12338
|
+
# Constraints:
|
12339
|
+
#
|
12340
|
+
# * If supplied, must match the name of an existing default DB cluster
|
12341
|
+
# parameter group.
|
12342
|
+
#
|
12343
|
+
# * Must be 1 to 255 letters, numbers, or hyphens.
|
12344
|
+
#
|
12345
|
+
# * First character must be a letter.
|
12346
|
+
#
|
12347
|
+
# * Can't end with a hyphen or contain two consecutive hyphens.
|
12348
|
+
# @return [String]
|
12349
|
+
#
|
12334
12350
|
# @!attribute [rw] deletion_protection
|
12335
12351
|
# Indicates if the DB cluster should have deletion protection enabled.
|
12336
12352
|
# The database can't be deleted when this value is set to true. The
|
@@ -12357,6 +12373,7 @@ module Aws::RDS
|
|
12357
12373
|
:enable_cloudwatch_logs_exports,
|
12358
12374
|
:engine_mode,
|
12359
12375
|
:scaling_configuration,
|
12376
|
+
:db_cluster_parameter_group_name,
|
12360
12377
|
:deletion_protection)
|
12361
12378
|
include Aws::Structure
|
12362
12379
|
end
|
@@ -12398,6 +12415,7 @@ module Aws::RDS
|
|
12398
12415
|
# enable_iam_database_authentication: false,
|
12399
12416
|
# backtrack_window: 1,
|
12400
12417
|
# enable_cloudwatch_logs_exports: ["String"],
|
12418
|
+
# db_cluster_parameter_group_name: "String",
|
12401
12419
|
# deletion_protection: false,
|
12402
12420
|
# }
|
12403
12421
|
#
|
@@ -12410,7 +12428,7 @@ module Aws::RDS
|
|
12410
12428
|
#
|
12411
12429
|
# * First character must be a letter
|
12412
12430
|
#
|
12413
|
-
# *
|
12431
|
+
# * Can't end with a hyphen or contain two consecutive hyphens
|
12414
12432
|
# @return [String]
|
12415
12433
|
#
|
12416
12434
|
# @!attribute [rw] restore_type
|
@@ -12453,9 +12471,9 @@ module Aws::RDS
|
|
12453
12471
|
# * Must be specified if `UseLatestRestorableTime` parameter is not
|
12454
12472
|
# provided
|
12455
12473
|
#
|
12456
|
-
# *
|
12474
|
+
# * Can't be specified if `UseLatestRestorableTime` parameter is true
|
12457
12475
|
#
|
12458
|
-
# *
|
12476
|
+
# * Can't be specified if `RestoreType` parameter is `copy-on-write`
|
12459
12477
|
#
|
12460
12478
|
# Example: `2015-03-07T23:45:00Z`
|
12461
12479
|
# @return [Time]
|
@@ -12466,7 +12484,7 @@ module Aws::RDS
|
|
12466
12484
|
#
|
12467
12485
|
# Default: `false`
|
12468
12486
|
#
|
12469
|
-
# Constraints:
|
12487
|
+
# Constraints: Can't be specified if `RestoreToTime` parameter is
|
12470
12488
|
# provided.
|
12471
12489
|
# @return [Boolean]
|
12472
12490
|
#
|
@@ -12519,8 +12537,8 @@ module Aws::RDS
|
|
12519
12537
|
# the source DB cluster. The new DB cluster is encrypted with the KMS
|
12520
12538
|
# key identified by the `KmsKeyId` parameter.
|
12521
12539
|
#
|
12522
|
-
# If you
|
12523
|
-
# following
|
12540
|
+
# If you don't specify a value for the `KmsKeyId` parameter, then the
|
12541
|
+
# following occurs:
|
12524
12542
|
#
|
12525
12543
|
# * If the DB cluster is encrypted, then the restored DB cluster is
|
12526
12544
|
# encrypted using the KMS key that was used to encrypt the source DB
|
@@ -12565,6 +12583,23 @@ module Aws::RDS
|
|
12565
12583
|
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
12566
12584
|
# @return [Array<String>]
|
12567
12585
|
#
|
12586
|
+
# @!attribute [rw] db_cluster_parameter_group_name
|
12587
|
+
# The name of the DB cluster parameter group to associate with this DB
|
12588
|
+
# cluster. If this argument is omitted, the default DB cluster
|
12589
|
+
# parameter group for the specified engine is used.
|
12590
|
+
#
|
12591
|
+
# Constraints:
|
12592
|
+
#
|
12593
|
+
# * If supplied, must match the name of an existing DB cluster
|
12594
|
+
# parameter group.
|
12595
|
+
#
|
12596
|
+
# * Must be 1 to 255 letters, numbers, or hyphens.
|
12597
|
+
#
|
12598
|
+
# * First character must be a letter.
|
12599
|
+
#
|
12600
|
+
# * Can't end with a hyphen or contain two consecutive hyphens.
|
12601
|
+
# @return [String]
|
12602
|
+
#
|
12568
12603
|
# @!attribute [rw] deletion_protection
|
12569
12604
|
# Indicates if the DB cluster should have deletion protection enabled.
|
12570
12605
|
# The database can't be deleted when this value is set to true. The
|
@@ -12588,6 +12623,7 @@ module Aws::RDS
|
|
12588
12623
|
:enable_iam_database_authentication,
|
12589
12624
|
:backtrack_window,
|
12590
12625
|
:enable_cloudwatch_logs_exports,
|
12626
|
+
:db_cluster_parameter_group_name,
|
12591
12627
|
:deletion_protection)
|
12592
12628
|
include Aws::Structure
|
12593
12629
|
end
|
@@ -12645,6 +12681,7 @@ module Aws::RDS
|
|
12645
12681
|
# },
|
12646
12682
|
# ],
|
12647
12683
|
# use_default_processor_features: false,
|
12684
|
+
# db_parameter_group_name: "String",
|
12648
12685
|
# deletion_protection: false,
|
12649
12686
|
# }
|
12650
12687
|
#
|
@@ -12658,7 +12695,7 @@ module Aws::RDS
|
|
12658
12695
|
#
|
12659
12696
|
# * First character must be a letter
|
12660
12697
|
#
|
12661
|
-
# *
|
12698
|
+
# * Can't end with a hyphen or contain two consecutive hyphens
|
12662
12699
|
#
|
12663
12700
|
# Example: `my-snapshot-id`
|
12664
12701
|
# @return [String]
|
@@ -12899,6 +12936,22 @@ module Aws::RDS
|
|
12899
12936
|
# uses its default processor features.
|
12900
12937
|
# @return [Boolean]
|
12901
12938
|
#
|
12939
|
+
# @!attribute [rw] db_parameter_group_name
|
12940
|
+
# The name of the DB parameter group to associate with this DB
|
12941
|
+
# instance. If this argument is omitted, the default DBParameterGroup
|
12942
|
+
# for the specified engine is used.
|
12943
|
+
#
|
12944
|
+
# Constraints:
|
12945
|
+
#
|
12946
|
+
# * If supplied, must match the name of an existing DBParameterGroup.
|
12947
|
+
#
|
12948
|
+
# * Must be 1 to 255 letters, numbers, or hyphens.
|
12949
|
+
#
|
12950
|
+
# * First character must be a letter.
|
12951
|
+
#
|
12952
|
+
# * Can't end with a hyphen or contain two consecutive hyphens.
|
12953
|
+
# @return [String]
|
12954
|
+
#
|
12902
12955
|
# @!attribute [rw] deletion_protection
|
12903
12956
|
# Indicates if the DB instance should have deletion protection
|
12904
12957
|
# enabled. The database can't be deleted when this value is set to
|
@@ -12938,6 +12991,7 @@ module Aws::RDS
|
|
12938
12991
|
:enable_cloudwatch_logs_exports,
|
12939
12992
|
:processor_features,
|
12940
12993
|
:use_default_processor_features,
|
12994
|
+
:db_parameter_group_name,
|
12941
12995
|
:deletion_protection)
|
12942
12996
|
include Aws::Structure
|
12943
12997
|
end
|
@@ -13030,7 +13084,7 @@ module Aws::RDS
|
|
13030
13084
|
#
|
13031
13085
|
# * First character must be a letter.
|
13032
13086
|
#
|
13033
|
-
# *
|
13087
|
+
# * Can't end with a hyphen or contain two consecutive hyphens.
|
13034
13088
|
#
|
13035
13089
|
# Example: `mydbinstance`
|
13036
13090
|
# @return [String]
|
@@ -13077,7 +13131,7 @@ module Aws::RDS
|
|
13077
13131
|
#
|
13078
13132
|
# * First character must be a letter.
|
13079
13133
|
#
|
13080
|
-
# *
|
13134
|
+
# * Can't be a reserved word for the chosen database engine.
|
13081
13135
|
# @return [String]
|
13082
13136
|
#
|
13083
13137
|
# @!attribute [rw] master_user_password
|
@@ -13504,6 +13558,7 @@ module Aws::RDS
|
|
13504
13558
|
# },
|
13505
13559
|
# ],
|
13506
13560
|
# use_default_processor_features: false,
|
13561
|
+
# db_parameter_group_name: "String",
|
13507
13562
|
# deletion_protection: false,
|
13508
13563
|
# }
|
13509
13564
|
#
|
@@ -13526,7 +13581,7 @@ module Aws::RDS
|
|
13526
13581
|
#
|
13527
13582
|
# * First character must be a letter
|
13528
13583
|
#
|
13529
|
-
# *
|
13584
|
+
# * Can't end with a hyphen or contain two consecutive hyphens
|
13530
13585
|
# @return [String]
|
13531
13586
|
#
|
13532
13587
|
# @!attribute [rw] restore_time
|
@@ -13539,7 +13594,7 @@ module Aws::RDS
|
|
13539
13594
|
#
|
13540
13595
|
# * Must be before the latest restorable time for the DB instance
|
13541
13596
|
#
|
13542
|
-
# *
|
13597
|
+
# * Can't be specified if UseLatestRestorableTime parameter is true
|
13543
13598
|
#
|
13544
13599
|
# Example: `2009-09-07T23:45:00Z`
|
13545
13600
|
# @return [Time]
|
@@ -13550,7 +13605,7 @@ module Aws::RDS
|
|
13550
13605
|
#
|
13551
13606
|
# Default: `false`
|
13552
13607
|
#
|
13553
|
-
# Constraints:
|
13608
|
+
# Constraints: Can't be specified if RestoreTime parameter is
|
13554
13609
|
# provided.
|
13555
13610
|
# @return [Boolean]
|
13556
13611
|
#
|
@@ -13768,6 +13823,22 @@ module Aws::RDS
|
|
13768
13823
|
# uses its default processor features.
|
13769
13824
|
# @return [Boolean]
|
13770
13825
|
#
|
13826
|
+
# @!attribute [rw] db_parameter_group_name
|
13827
|
+
# The name of the DB parameter group to associate with this DB
|
13828
|
+
# instance. If this argument is omitted, the default DBParameterGroup
|
13829
|
+
# for the specified engine is used.
|
13830
|
+
#
|
13831
|
+
# Constraints:
|
13832
|
+
#
|
13833
|
+
# * If supplied, must match the name of an existing DBParameterGroup.
|
13834
|
+
#
|
13835
|
+
# * Must be 1 to 255 letters, numbers, or hyphens.
|
13836
|
+
#
|
13837
|
+
# * First character must be a letter.
|
13838
|
+
#
|
13839
|
+
# * Can't end with a hyphen or contain two consecutive hyphens.
|
13840
|
+
# @return [String]
|
13841
|
+
#
|
13771
13842
|
# @!attribute [rw] deletion_protection
|
13772
13843
|
# Indicates if the DB instance should have deletion protection
|
13773
13844
|
# enabled. The database can't be deleted when this value is set to
|
@@ -13809,6 +13880,7 @@ module Aws::RDS
|
|
13809
13880
|
:enable_cloudwatch_logs_exports,
|
13810
13881
|
:processor_features,
|
13811
13882
|
:use_default_processor_features,
|
13883
|
+
:db_parameter_group_name,
|
13812
13884
|
:deletion_protection)
|
13813
13885
|
include Aws::Structure
|
13814
13886
|
end
|