aws-sdk-rds 1.193.0 → 1.195.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +131 -80
- data/lib/aws-sdk-rds/client_api.rb +1 -0
- data/lib/aws-sdk-rds/db_cluster.rb +7 -5
- data/lib/aws-sdk-rds/db_instance.rb +117 -70
- data/lib/aws-sdk-rds/types.rb +136 -79
- data/lib/aws-sdk-rds.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a1731c45515171c577f37e843f6aeb818e6fdccad5a05da1ddad8a682423fd04
|
4
|
+
data.tar.gz: 077afc0aaf8f1032ca6d28d73f284bd696b50bd471921f5c8cab4b3f57aa7443
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 49cace16d34afa0914388c8dd70e0ce9f7ba8e32be077f615b805095b3a3612613aa080d2a362f9dab84b22462b142289be82062593846c02fdaca99992d08f1
|
7
|
+
data.tar.gz: b21c5ccdf2f7870dcc285a51dd817bc1308e2a0ad8054ffa8bad23f939645e8bf51ea573114a4c48b0d54a8bace1028e7e93631ffbf3e91c1edb195588fe95d6
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.195.0 (2023-10-02)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Adds DefaultCertificateForNewLaunches field in the DescribeCertificates API response.
|
8
|
+
|
9
|
+
1.194.0 (2023-09-27)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.193.0 (2023-09-05)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.195.0
|
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -10000,8 +10000,8 @@ module Aws::RDS
|
|
10000
10000
|
req.send_request(options)
|
10001
10001
|
end
|
10002
10002
|
|
10003
|
-
# Lists the set of CA certificates provided by
|
10004
|
-
# Amazon Web Services account.
|
10003
|
+
# Lists the set of certificate authority (CA) certificates provided by
|
10004
|
+
# Amazon RDS for this Amazon Web Services account.
|
10005
10005
|
#
|
10006
10006
|
# For more information, see [Using SSL/TLS to encrypt a connection to a
|
10007
10007
|
# DB instance][1] in the *Amazon RDS User Guide* and [ Using SSL/TLS to
|
@@ -10045,6 +10045,7 @@ module Aws::RDS
|
|
10045
10045
|
#
|
10046
10046
|
# @return [Types::CertificateMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
10047
10047
|
#
|
10048
|
+
# * {Types::CertificateMessage#default_certificate_for_new_launches #default_certificate_for_new_launches} => String
|
10048
10049
|
# * {Types::CertificateMessage#certificates #certificates} => Array<Types::Certificate>
|
10049
10050
|
# * {Types::CertificateMessage#marker #marker} => String
|
10050
10051
|
#
|
@@ -10117,6 +10118,7 @@ module Aws::RDS
|
|
10117
10118
|
#
|
10118
10119
|
# @example Response structure
|
10119
10120
|
#
|
10121
|
+
# resp.default_certificate_for_new_launches #=> String
|
10120
10122
|
# resp.certificates #=> Array
|
10121
10123
|
# resp.certificates[0].certificate_identifier #=> String
|
10122
10124
|
# resp.certificates[0].certificate_type #=> String
|
@@ -16912,7 +16914,7 @@ module Aws::RDS
|
|
16912
16914
|
# @option params [Boolean] :allow_major_version_upgrade
|
16913
16915
|
# Specifies whether major version upgrades are allowed.
|
16914
16916
|
#
|
16915
|
-
# Valid for Cluster Type: Aurora DB clusters
|
16917
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
16916
16918
|
#
|
16917
16919
|
# Constraints:
|
16918
16920
|
#
|
@@ -17997,6 +17999,17 @@ module Aws::RDS
|
|
17997
17999
|
#
|
17998
18000
|
# Default: Uses existing setting
|
17999
18001
|
#
|
18002
|
+
# Constraints:
|
18003
|
+
#
|
18004
|
+
# * If you are modifying the DB instance class and upgrading the engine
|
18005
|
+
# version at the same time, the currently running engine version must
|
18006
|
+
# be supported on the specified DB instance class. Otherwise, the
|
18007
|
+
# operation returns an error. In this case, first run the operation to
|
18008
|
+
# modify the DB instance class, and then run it again to upgrade the
|
18009
|
+
# engine version.
|
18010
|
+
#
|
18011
|
+
# ^
|
18012
|
+
#
|
18000
18013
|
#
|
18001
18014
|
#
|
18002
18015
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html
|
@@ -18265,6 +18278,17 @@ module Aws::RDS
|
|
18265
18278
|
# In RDS Custom for Oracle, this parameter is supported for read
|
18266
18279
|
# replicas only if they are in the `PATCH_DB_FAILURE` lifecycle.
|
18267
18280
|
#
|
18281
|
+
# Constraints:
|
18282
|
+
#
|
18283
|
+
# * If you are upgrading the engine version and modifying the DB
|
18284
|
+
# instance class at the same time, the currently running engine
|
18285
|
+
# version must be supported on the specified DB instance class.
|
18286
|
+
# Otherwise, the operation returns an error. In this case, first run
|
18287
|
+
# the operation to modify the DB instance class, and then run it again
|
18288
|
+
# to upgrade the engine version.
|
18289
|
+
#
|
18290
|
+
# ^
|
18291
|
+
#
|
18268
18292
|
# @option params [Boolean] :allow_major_version_upgrade
|
18269
18293
|
# Specifies whether major version upgrades are allowed. Changing this
|
18270
18294
|
# parameter doesn't result in an outage and the change is
|
@@ -23494,9 +23518,11 @@ module Aws::RDS
|
|
23494
23518
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
23495
23519
|
#
|
23496
23520
|
# @option params [String] :db_cluster_parameter_group_name
|
23497
|
-
# The name of the DB cluster parameter group to associate with
|
23498
|
-
#
|
23499
|
-
#
|
23521
|
+
# The name of the custom DB cluster parameter group to associate with
|
23522
|
+
# this DB cluster.
|
23523
|
+
#
|
23524
|
+
# If the `DBClusterParameterGroupName` parameter is omitted, the default
|
23525
|
+
# DB cluster parameter group for the specified engine is used.
|
23500
23526
|
#
|
23501
23527
|
# Constraints:
|
23502
23528
|
#
|
@@ -23570,7 +23596,7 @@ module Aws::RDS
|
|
23570
23596
|
# database engines.
|
23571
23597
|
#
|
23572
23598
|
# For the full list of DB instance classes, and availability for your
|
23573
|
-
# engine, see [DB instance class][1] in the *Amazon RDS User Guide
|
23599
|
+
# engine, see [DB instance class][1] in the *Amazon RDS User Guide*.
|
23574
23600
|
#
|
23575
23601
|
# Valid for: Multi-AZ DB clusters only
|
23576
23602
|
#
|
@@ -25442,8 +25468,8 @@ module Aws::RDS
|
|
25442
25468
|
|
25443
25469
|
# Restores a DB instance to an arbitrary point in time. You can restore
|
25444
25470
|
# to any point in time before the time identified by the
|
25445
|
-
# LatestRestorableTime property. You can restore to a point up to the
|
25446
|
-
# number of days specified by the BackupRetentionPeriod property.
|
25471
|
+
# `LatestRestorableTime` property. You can restore to a point up to the
|
25472
|
+
# number of days specified by the `BackupRetentionPeriod` property.
|
25447
25473
|
#
|
25448
25474
|
# The target database is created with most of the original
|
25449
25475
|
# configuration, but in a system-selected Availability Zone, with the
|
@@ -25469,38 +25495,40 @@ module Aws::RDS
|
|
25469
25495
|
# ^
|
25470
25496
|
#
|
25471
25497
|
# @option params [required, String] :target_db_instance_identifier
|
25472
|
-
# The name of the new DB instance to
|
25498
|
+
# The name of the new DB instance to create.
|
25473
25499
|
#
|
25474
25500
|
# Constraints:
|
25475
25501
|
#
|
25476
|
-
# * Must contain from 1 to 63 letters, numbers, or hyphens
|
25502
|
+
# * Must contain from 1 to 63 letters, numbers, or hyphens.
|
25477
25503
|
#
|
25478
|
-
# * First character must be a letter
|
25504
|
+
# * First character must be a letter.
|
25479
25505
|
#
|
25480
|
-
# * Can't end with a hyphen or contain two consecutive hyphens
|
25506
|
+
# * Can't end with a hyphen or contain two consecutive hyphens.
|
25481
25507
|
#
|
25482
25508
|
# @option params [Time,DateTime,Date,Integer,String] :restore_time
|
25483
25509
|
# The date and time to restore from.
|
25484
25510
|
#
|
25485
|
-
# Valid Values: Value must be a time in Universal Coordinated Time (UTC)
|
25486
|
-
# format
|
25487
|
-
#
|
25488
25511
|
# Constraints:
|
25489
25512
|
#
|
25490
|
-
# * Must be
|
25513
|
+
# * Must be a time in Universal Coordinated Time (UTC) format.
|
25514
|
+
#
|
25515
|
+
# * Must be before the latest restorable time for the DB instance.
|
25491
25516
|
#
|
25492
25517
|
# * Can't be specified if the `UseLatestRestorableTime` parameter is
|
25493
|
-
# enabled
|
25518
|
+
# enabled.
|
25494
25519
|
#
|
25495
25520
|
# Example: `2009-09-07T23:45:00Z`
|
25496
25521
|
#
|
25497
25522
|
# @option params [Boolean] :use_latest_restorable_time
|
25498
|
-
#
|
25499
|
-
#
|
25500
|
-
#
|
25523
|
+
# Specifies whether the DB instance is restored from the latest backup
|
25524
|
+
# time. By default, the DB instance isn't restored from the latest
|
25525
|
+
# backup time.
|
25501
25526
|
#
|
25502
|
-
# Constraints:
|
25503
|
-
#
|
25527
|
+
# Constraints:
|
25528
|
+
#
|
25529
|
+
# * Can't be specified if the `RestoreTime` parameter is provided.
|
25530
|
+
#
|
25531
|
+
# ^
|
25504
25532
|
#
|
25505
25533
|
# @option params [String] :db_instance_class
|
25506
25534
|
# The compute and memory capacity of the Amazon RDS DB instance, for
|
@@ -25509,7 +25537,7 @@ module Aws::RDS
|
|
25509
25537
|
# list of DB instance classes, and availability for your engine, see [DB
|
25510
25538
|
# Instance Class][1] in the *Amazon RDS User Guide*.
|
25511
25539
|
#
|
25512
|
-
# Default: The same
|
25540
|
+
# Default: The same DB instance class as the original DB instance.
|
25513
25541
|
#
|
25514
25542
|
#
|
25515
25543
|
#
|
@@ -25518,39 +25546,53 @@ module Aws::RDS
|
|
25518
25546
|
# @option params [Integer] :port
|
25519
25547
|
# The port number on which the database accepts connections.
|
25520
25548
|
#
|
25521
|
-
# Constraints: Value must be `1150-65535`
|
25522
|
-
#
|
25523
25549
|
# Default: The same port as the original DB instance.
|
25524
25550
|
#
|
25551
|
+
# Constraints:
|
25552
|
+
#
|
25553
|
+
# * The value must be `1150-65535`.
|
25554
|
+
#
|
25555
|
+
# ^
|
25556
|
+
#
|
25525
25557
|
# @option params [String] :availability_zone
|
25526
25558
|
# The Availability Zone (AZ) where the DB instance will be created.
|
25527
25559
|
#
|
25528
25560
|
# Default: A random, system-chosen Availability Zone.
|
25529
25561
|
#
|
25530
|
-
#
|
25531
|
-
#
|
25562
|
+
# Constraints:
|
25563
|
+
#
|
25564
|
+
# * You can't specify the `AvailabilityZone` parameter if the DB
|
25565
|
+
# instance is a Multi-AZ deployment.
|
25566
|
+
#
|
25567
|
+
# ^
|
25532
25568
|
#
|
25533
25569
|
# Example: `us-east-1a`
|
25534
25570
|
#
|
25535
25571
|
# @option params [String] :db_subnet_group_name
|
25536
25572
|
# The DB subnet group name to use for the new instance.
|
25537
25573
|
#
|
25538
|
-
# Constraints:
|
25539
|
-
#
|
25574
|
+
# Constraints:
|
25575
|
+
#
|
25576
|
+
# * If supplied, must match the name of an existing DB subnet group.
|
25577
|
+
#
|
25578
|
+
# ^
|
25540
25579
|
#
|
25541
25580
|
# Example: `mydbsubnetgroup`
|
25542
25581
|
#
|
25543
25582
|
# @option params [Boolean] :multi_az
|
25544
|
-
#
|
25545
|
-
# deployment.
|
25583
|
+
# Secifies whether the DB instance is a Multi-AZ deployment.
|
25546
25584
|
#
|
25547
25585
|
# This setting doesn't apply to RDS Custom.
|
25548
25586
|
#
|
25549
|
-
#
|
25550
|
-
#
|
25587
|
+
# Constraints:
|
25588
|
+
#
|
25589
|
+
# * You can't specify the `AvailabilityZone` parameter if the DB
|
25590
|
+
# instance is a Multi-AZ deployment.
|
25591
|
+
#
|
25592
|
+
# ^
|
25551
25593
|
#
|
25552
25594
|
# @option params [Boolean] :publicly_accessible
|
25553
|
-
#
|
25595
|
+
# Specifies whether the DB instance is publicly accessible.
|
25554
25596
|
#
|
25555
25597
|
# When the DB cluster is publicly accessible, its Domain Name System
|
25556
25598
|
# (DNS) endpoint resolves to the private IP address from within the DB
|
@@ -25566,21 +25608,21 @@ module Aws::RDS
|
|
25566
25608
|
# For more information, see CreateDBInstance.
|
25567
25609
|
#
|
25568
25610
|
# @option params [Boolean] :auto_minor_version_upgrade
|
25569
|
-
#
|
25570
|
-
#
|
25611
|
+
# Specifies whether minor version upgrades are applied automatically to
|
25612
|
+
# the DB instance during the maintenance window.
|
25571
25613
|
#
|
25572
25614
|
# This setting doesn't apply to RDS Custom.
|
25573
25615
|
#
|
25574
25616
|
# @option params [String] :license_model
|
25575
|
-
#
|
25617
|
+
# The license model information for the restored DB instance.
|
25576
25618
|
#
|
25577
25619
|
# This setting doesn't apply to RDS Custom.
|
25578
25620
|
#
|
25579
|
-
#
|
25580
|
-
#
|
25581
|
-
# Valid values: `license-included` \| `bring-your-own-license` \|
|
25621
|
+
# Valid Values: `license-included` \| `bring-your-own-license` \|
|
25582
25622
|
# `general-public-license`
|
25583
25623
|
#
|
25624
|
+
# Default: Same as the source.
|
25625
|
+
#
|
25584
25626
|
# @option params [String] :db_name
|
25585
25627
|
# The database name for the restored DB instance.
|
25586
25628
|
#
|
@@ -25594,10 +25636,6 @@ module Aws::RDS
|
|
25594
25636
|
#
|
25595
25637
|
# This setting doesn't apply to RDS Custom.
|
25596
25638
|
#
|
25597
|
-
# Default: The same as source
|
25598
|
-
#
|
25599
|
-
# Constraint: Must be compatible with the engine of the source
|
25600
|
-
#
|
25601
25639
|
# Valid Values:
|
25602
25640
|
#
|
25603
25641
|
# * `mariadb`
|
@@ -25622,19 +25660,28 @@ module Aws::RDS
|
|
25622
25660
|
#
|
25623
25661
|
# * `sqlserver-web`
|
25624
25662
|
#
|
25663
|
+
# Default: The same as source
|
25664
|
+
#
|
25665
|
+
# Constraints:
|
25666
|
+
#
|
25667
|
+
# * Must be compatible with the engine of the source.
|
25668
|
+
#
|
25669
|
+
# ^
|
25670
|
+
#
|
25625
25671
|
# @option params [Integer] :iops
|
25626
25672
|
# The amount of Provisioned IOPS (input/output operations per second) to
|
25627
|
-
#
|
25673
|
+
# initially allocate for the DB instance.
|
25628
25674
|
#
|
25629
|
-
#
|
25675
|
+
# This setting doesn't apply to SQL Server.
|
25630
25676
|
#
|
25631
|
-
#
|
25677
|
+
# Constraints:
|
25632
25678
|
#
|
25633
|
-
#
|
25634
|
-
#
|
25679
|
+
# * Must be an integer greater than 1000.
|
25680
|
+
#
|
25681
|
+
# ^
|
25635
25682
|
#
|
25636
25683
|
# @option params [String] :option_group_name
|
25637
|
-
# The name of the option group to
|
25684
|
+
# The name of the option group to use for the restored DB instance.
|
25638
25685
|
#
|
25639
25686
|
# Permanent options, such as the TDE option for Oracle Advanced Security
|
25640
25687
|
# TDE, can't be removed from an option group, and that option group
|
@@ -25644,9 +25691,8 @@ module Aws::RDS
|
|
25644
25691
|
# This setting doesn't apply to RDS Custom.
|
25645
25692
|
#
|
25646
25693
|
# @option params [Boolean] :copy_tags_to_snapshot
|
25647
|
-
#
|
25648
|
-
#
|
25649
|
-
# copied.
|
25694
|
+
# Specifies whether to copy all tags from the restored DB instance to
|
25695
|
+
# snapshots of the DB instance. By default, tags are not copied.
|
25650
25696
|
#
|
25651
25697
|
# @option params [Array<Types::Tag>] :tags
|
25652
25698
|
# A list of tags. For more information, see [Tagging Amazon RDS
|
@@ -25657,14 +25703,19 @@ module Aws::RDS
|
|
25657
25703
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
25658
25704
|
#
|
25659
25705
|
# @option params [String] :storage_type
|
25660
|
-
#
|
25706
|
+
# The storage type to associate with the DB instance.
|
25661
25707
|
#
|
25662
|
-
# Valid
|
25708
|
+
# Valid Values: `gp2 | gp3 | io1 | standard`
|
25663
25709
|
#
|
25664
|
-
#
|
25665
|
-
# `
|
25710
|
+
# Default: `io1`, if the `Iops` parameter is specified. Otherwise,
|
25711
|
+
# `gp2`.
|
25666
25712
|
#
|
25667
|
-
#
|
25713
|
+
# Constraints:
|
25714
|
+
#
|
25715
|
+
# * If you specify `io1` or `gp3`, you must also include a value for the
|
25716
|
+
# `Iops` parameter.
|
25717
|
+
#
|
25718
|
+
# ^
|
25668
25719
|
#
|
25669
25720
|
# @option params [String] :tde_credential_arn
|
25670
25721
|
# The ARN from the key store with which to associate the instance for
|
@@ -25685,8 +25736,8 @@ module Aws::RDS
|
|
25685
25736
|
# VPC.
|
25686
25737
|
#
|
25687
25738
|
# @option params [String] :domain
|
25688
|
-
#
|
25689
|
-
#
|
25739
|
+
# The Active Directory directory ID to restore the DB instance in.
|
25740
|
+
# Create the domain before running this command. Currently, you can
|
25690
25741
|
# create only the MySQL, Microsoft SQL Server, Oracle, and PostgreSQL DB
|
25691
25742
|
# instances in an Active Directory Domain.
|
25692
25743
|
#
|
@@ -25756,9 +25807,9 @@ module Aws::RDS
|
|
25756
25807
|
# Example: `123.124.125.126,234.235.236.237`
|
25757
25808
|
#
|
25758
25809
|
# @option params [Boolean] :enable_iam_database_authentication
|
25759
|
-
#
|
25760
|
-
#
|
25761
|
-
#
|
25810
|
+
# Specifies whether to enable mapping of Amazon Web Services Identity
|
25811
|
+
# and Access Management (IAM) accounts to database accounts. By default,
|
25812
|
+
# mapping isn't enabled.
|
25762
25813
|
#
|
25763
25814
|
# This setting doesn't apply to RDS Custom.
|
25764
25815
|
#
|
@@ -25804,7 +25855,7 @@ module Aws::RDS
|
|
25804
25855
|
#
|
25805
25856
|
# Constraints:
|
25806
25857
|
#
|
25807
|
-
# * If supplied, must match the name of an existing
|
25858
|
+
# * If supplied, must match the name of an existing DB parameter group.
|
25808
25859
|
#
|
25809
25860
|
# * Must be 1 to 255 letters, numbers, or hyphens.
|
25810
25861
|
#
|
@@ -25813,10 +25864,10 @@ module Aws::RDS
|
|
25813
25864
|
# * Can't end with a hyphen or contain two consecutive hyphens.
|
25814
25865
|
#
|
25815
25866
|
# @option params [Boolean] :deletion_protection
|
25816
|
-
#
|
25817
|
-
#
|
25818
|
-
#
|
25819
|
-
#
|
25867
|
+
# Specifies whether the DB instance has deletion protection enabled. The
|
25868
|
+
# database can't be deleted when deletion protection is enabled. By
|
25869
|
+
# default, deletion protection isn't enabled. For more information, see
|
25870
|
+
# [ Deleting a DB Instance][1].
|
25820
25871
|
#
|
25821
25872
|
#
|
25822
25873
|
#
|
@@ -25842,13 +25893,13 @@ module Aws::RDS
|
|
25842
25893
|
# @option params [String] :source_db_instance_automated_backups_arn
|
25843
25894
|
# The Amazon Resource Name (ARN) of the replicated automated backups
|
25844
25895
|
# from which to restore, for example,
|
25845
|
-
# `arn:aws:rds:
|
25896
|
+
# `arn:aws:rds:us-east-1:123456789012:auto-backup:ab-L2IJCEXJP7XQ7HOJ4SIEXAMPLE`.
|
25846
25897
|
#
|
25847
25898
|
# This setting doesn't apply to RDS Custom.
|
25848
25899
|
#
|
25849
25900
|
# @option params [Boolean] :enable_customer_owned_ip
|
25850
|
-
#
|
25851
|
-
#
|
25901
|
+
# Specifies whether to enable a customer-owned IP address (CoIP) for an
|
25902
|
+
# RDS on Outposts DB instance.
|
25852
25903
|
#
|
25853
25904
|
# A *CoIP* provides local or external connectivity to resources in your
|
25854
25905
|
# Outpost subnets through your on-premises network. For some use cases,
|
@@ -25908,12 +25959,6 @@ module Aws::RDS
|
|
25908
25959
|
# @option params [String] :network_type
|
25909
25960
|
# The network type of the DB instance.
|
25910
25961
|
#
|
25911
|
-
# Valid values:
|
25912
|
-
#
|
25913
|
-
# * `IPV4`
|
25914
|
-
#
|
25915
|
-
# * `DUAL`
|
25916
|
-
#
|
25917
25962
|
# The network type is determined by the `DBSubnetGroup` specified for
|
25918
25963
|
# the DB instance. A `DBSubnetGroup` can support only the IPv4 protocol
|
25919
25964
|
# or the IPv4 and the IPv6 protocols (`DUAL`).
|
@@ -25921,12 +25966,18 @@ module Aws::RDS
|
|
25921
25966
|
# For more information, see [ Working with a DB instance in a VPC][1] in
|
25922
25967
|
# the *Amazon RDS User Guide.*
|
25923
25968
|
#
|
25969
|
+
# Valid Values:
|
25970
|
+
#
|
25971
|
+
# * `IPV4`
|
25972
|
+
#
|
25973
|
+
# * `DUAL`
|
25974
|
+
#
|
25924
25975
|
#
|
25925
25976
|
#
|
25926
25977
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
25927
25978
|
#
|
25928
25979
|
# @option params [Integer] :storage_throughput
|
25929
|
-
#
|
25980
|
+
# The storage throughput value for the DB instance.
|
25930
25981
|
#
|
25931
25982
|
# This setting doesn't apply to RDS Custom or Amazon Aurora.
|
25932
25983
|
#
|
@@ -28288,7 +28339,7 @@ module Aws::RDS
|
|
28288
28339
|
params: params,
|
28289
28340
|
config: config)
|
28290
28341
|
context[:gem_name] = 'aws-sdk-rds'
|
28291
|
-
context[:gem_version] = '1.
|
28342
|
+
context[:gem_version] = '1.195.0'
|
28292
28343
|
Seahorse::Client::Request.new(handlers, context)
|
28293
28344
|
end
|
28294
28345
|
|
@@ -789,6 +789,7 @@ module Aws::RDS
|
|
789
789
|
|
790
790
|
CertificateList.member = Shapes::ShapeRef.new(shape: Certificate, location_name: "Certificate")
|
791
791
|
|
792
|
+
CertificateMessage.add_member(:default_certificate_for_new_launches, Shapes::ShapeRef.new(shape: String, location_name: "DefaultCertificateForNewLaunches"))
|
792
793
|
CertificateMessage.add_member(:certificates, Shapes::ShapeRef.new(shape: CertificateList, location_name: "Certificates"))
|
793
794
|
CertificateMessage.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
|
794
795
|
CertificateMessage.struct_class = Types::CertificateMessage
|
@@ -2031,7 +2031,7 @@ module Aws::RDS
|
|
2031
2031
|
# @option options [Boolean] :allow_major_version_upgrade
|
2032
2032
|
# Specifies whether major version upgrades are allowed.
|
2033
2033
|
#
|
2034
|
-
# Valid for Cluster Type: Aurora DB clusters
|
2034
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
2035
2035
|
#
|
2036
2036
|
# Constraints:
|
2037
2037
|
#
|
@@ -2667,9 +2667,11 @@ module Aws::RDS
|
|
2667
2667
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
2668
2668
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
2669
2669
|
# @option options [String] :db_cluster_parameter_group_name
|
2670
|
-
# The name of the DB cluster parameter group to associate with
|
2671
|
-
#
|
2672
|
-
#
|
2670
|
+
# The name of the custom DB cluster parameter group to associate with
|
2671
|
+
# this DB cluster.
|
2672
|
+
#
|
2673
|
+
# If the `DBClusterParameterGroupName` parameter is omitted, the default
|
2674
|
+
# DB cluster parameter group for the specified engine is used.
|
2673
2675
|
#
|
2674
2676
|
# Constraints:
|
2675
2677
|
#
|
@@ -2736,7 +2738,7 @@ module Aws::RDS
|
|
2736
2738
|
# database engines.
|
2737
2739
|
#
|
2738
2740
|
# For the full list of DB instance classes, and availability for your
|
2739
|
-
# engine, see [DB instance class][1] in the *Amazon RDS User Guide
|
2741
|
+
# engine, see [DB instance class][1] in the *Amazon RDS User Guide*.
|
2740
2742
|
#
|
2741
2743
|
# Valid for: Multi-AZ DB clusters only
|
2742
2744
|
#
|