aws-sdk-rds 1.194.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 +5 -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 +2 -2
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
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
|
#
|
@@ -2913,6 +2913,17 @@ module Aws::RDS
|
|
2913
2913
|
#
|
2914
2914
|
# Default: Uses existing setting
|
2915
2915
|
#
|
2916
|
+
# Constraints:
|
2917
|
+
#
|
2918
|
+
# * If you are modifying the DB instance class and upgrading the engine
|
2919
|
+
# version at the same time, the currently running engine version must
|
2920
|
+
# be supported on the specified DB instance class. Otherwise, the
|
2921
|
+
# operation returns an error. In this case, first run the operation to
|
2922
|
+
# modify the DB instance class, and then run it again to upgrade the
|
2923
|
+
# engine version.
|
2924
|
+
#
|
2925
|
+
# ^
|
2926
|
+
#
|
2916
2927
|
#
|
2917
2928
|
#
|
2918
2929
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html
|
@@ -3169,6 +3180,17 @@ module Aws::RDS
|
|
3169
3180
|
#
|
3170
3181
|
# In RDS Custom for Oracle, this parameter is supported for read
|
3171
3182
|
# replicas only if they are in the `PATCH_DB_FAILURE` lifecycle.
|
3183
|
+
#
|
3184
|
+
# Constraints:
|
3185
|
+
#
|
3186
|
+
# * If you are upgrading the engine version and modifying the DB
|
3187
|
+
# instance class at the same time, the currently running engine
|
3188
|
+
# version must be supported on the specified DB instance class.
|
3189
|
+
# Otherwise, the operation returns an error. In this case, first run
|
3190
|
+
# the operation to modify the DB instance class, and then run it again
|
3191
|
+
# to upgrade the engine version.
|
3192
|
+
#
|
3193
|
+
# ^
|
3172
3194
|
# @option options [Boolean] :allow_major_version_upgrade
|
3173
3195
|
# Specifies whether major version upgrades are allowed. Changing this
|
3174
3196
|
# parameter doesn't result in an outage and the change is
|
@@ -3982,36 +4004,38 @@ module Aws::RDS
|
|
3982
4004
|
# })
|
3983
4005
|
# @param [Hash] options ({})
|
3984
4006
|
# @option options [required, String] :target_db_instance_identifier
|
3985
|
-
# The name of the new DB instance to
|
4007
|
+
# The name of the new DB instance to create.
|
3986
4008
|
#
|
3987
4009
|
# Constraints:
|
3988
4010
|
#
|
3989
|
-
# * Must contain from 1 to 63 letters, numbers, or hyphens
|
4011
|
+
# * Must contain from 1 to 63 letters, numbers, or hyphens.
|
3990
4012
|
#
|
3991
|
-
# * First character must be a letter
|
4013
|
+
# * First character must be a letter.
|
3992
4014
|
#
|
3993
|
-
# * Can't end with a hyphen or contain two consecutive hyphens
|
4015
|
+
# * Can't end with a hyphen or contain two consecutive hyphens.
|
3994
4016
|
# @option options [Time,DateTime,Date,Integer,String] :restore_time
|
3995
4017
|
# The date and time to restore from.
|
3996
4018
|
#
|
3997
|
-
# Valid Values: Value must be a time in Universal Coordinated Time (UTC)
|
3998
|
-
# format
|
3999
|
-
#
|
4000
4019
|
# Constraints:
|
4001
4020
|
#
|
4002
|
-
# * Must be
|
4021
|
+
# * Must be a time in Universal Coordinated Time (UTC) format.
|
4022
|
+
#
|
4023
|
+
# * Must be before the latest restorable time for the DB instance.
|
4003
4024
|
#
|
4004
4025
|
# * Can't be specified if the `UseLatestRestorableTime` parameter is
|
4005
|
-
# enabled
|
4026
|
+
# enabled.
|
4006
4027
|
#
|
4007
4028
|
# Example: `2009-09-07T23:45:00Z`
|
4008
4029
|
# @option options [Boolean] :use_latest_restorable_time
|
4009
|
-
#
|
4010
|
-
#
|
4011
|
-
#
|
4030
|
+
# Specifies whether the DB instance is restored from the latest backup
|
4031
|
+
# time. By default, the DB instance isn't restored from the latest
|
4032
|
+
# backup time.
|
4033
|
+
#
|
4034
|
+
# Constraints:
|
4035
|
+
#
|
4036
|
+
# * Can't be specified if the `RestoreTime` parameter is provided.
|
4012
4037
|
#
|
4013
|
-
#
|
4014
|
-
# provided.
|
4038
|
+
# ^
|
4015
4039
|
# @option options [String] :db_instance_class
|
4016
4040
|
# The compute and memory capacity of the Amazon RDS DB instance, for
|
4017
4041
|
# example db.m4.large. Not all DB instance classes are available in all
|
@@ -4019,7 +4043,7 @@ module Aws::RDS
|
|
4019
4043
|
# list of DB instance classes, and availability for your engine, see [DB
|
4020
4044
|
# Instance Class][1] in the *Amazon RDS User Guide*.
|
4021
4045
|
#
|
4022
|
-
# Default: The same
|
4046
|
+
# Default: The same DB instance class as the original DB instance.
|
4023
4047
|
#
|
4024
4048
|
#
|
4025
4049
|
#
|
@@ -4027,35 +4051,49 @@ module Aws::RDS
|
|
4027
4051
|
# @option options [Integer] :port
|
4028
4052
|
# The port number on which the database accepts connections.
|
4029
4053
|
#
|
4030
|
-
# Constraints: Value must be `1150-65535`
|
4031
|
-
#
|
4032
4054
|
# Default: The same port as the original DB instance.
|
4055
|
+
#
|
4056
|
+
# Constraints:
|
4057
|
+
#
|
4058
|
+
# * The value must be `1150-65535`.
|
4059
|
+
#
|
4060
|
+
# ^
|
4033
4061
|
# @option options [String] :availability_zone
|
4034
4062
|
# The Availability Zone (AZ) where the DB instance will be created.
|
4035
4063
|
#
|
4036
4064
|
# Default: A random, system-chosen Availability Zone.
|
4037
4065
|
#
|
4038
|
-
#
|
4039
|
-
#
|
4066
|
+
# Constraints:
|
4067
|
+
#
|
4068
|
+
# * You can't specify the `AvailabilityZone` parameter if the DB
|
4069
|
+
# instance is a Multi-AZ deployment.
|
4070
|
+
#
|
4071
|
+
# ^
|
4040
4072
|
#
|
4041
4073
|
# Example: `us-east-1a`
|
4042
4074
|
# @option options [String] :db_subnet_group_name
|
4043
4075
|
# The DB subnet group name to use for the new instance.
|
4044
4076
|
#
|
4045
|
-
# Constraints:
|
4046
|
-
#
|
4077
|
+
# Constraints:
|
4078
|
+
#
|
4079
|
+
# * If supplied, must match the name of an existing DB subnet group.
|
4080
|
+
#
|
4081
|
+
# ^
|
4047
4082
|
#
|
4048
4083
|
# Example: `mydbsubnetgroup`
|
4049
4084
|
# @option options [Boolean] :multi_az
|
4050
|
-
#
|
4051
|
-
# deployment.
|
4085
|
+
# Secifies whether the DB instance is a Multi-AZ deployment.
|
4052
4086
|
#
|
4053
4087
|
# This setting doesn't apply to RDS Custom.
|
4054
4088
|
#
|
4055
|
-
#
|
4056
|
-
#
|
4089
|
+
# Constraints:
|
4090
|
+
#
|
4091
|
+
# * You can't specify the `AvailabilityZone` parameter if the DB
|
4092
|
+
# instance is a Multi-AZ deployment.
|
4093
|
+
#
|
4094
|
+
# ^
|
4057
4095
|
# @option options [Boolean] :publicly_accessible
|
4058
|
-
#
|
4096
|
+
# Specifies whether the DB instance is publicly accessible.
|
4059
4097
|
#
|
4060
4098
|
# When the DB cluster is publicly accessible, its Domain Name System
|
4061
4099
|
# (DNS) endpoint resolves to the private IP address from within the DB
|
@@ -4070,19 +4108,19 @@ module Aws::RDS
|
|
4070
4108
|
#
|
4071
4109
|
# For more information, see CreateDBInstance.
|
4072
4110
|
# @option options [Boolean] :auto_minor_version_upgrade
|
4073
|
-
#
|
4074
|
-
#
|
4111
|
+
# Specifies whether minor version upgrades are applied automatically to
|
4112
|
+
# the DB instance during the maintenance window.
|
4075
4113
|
#
|
4076
4114
|
# This setting doesn't apply to RDS Custom.
|
4077
4115
|
# @option options [String] :license_model
|
4078
|
-
#
|
4116
|
+
# The license model information for the restored DB instance.
|
4079
4117
|
#
|
4080
4118
|
# This setting doesn't apply to RDS Custom.
|
4081
4119
|
#
|
4082
|
-
#
|
4083
|
-
#
|
4084
|
-
# Valid values: `license-included` \| `bring-your-own-license` \|
|
4120
|
+
# Valid Values: `license-included` \| `bring-your-own-license` \|
|
4085
4121
|
# `general-public-license`
|
4122
|
+
#
|
4123
|
+
# Default: Same as the source.
|
4086
4124
|
# @option options [String] :db_name
|
4087
4125
|
# The database name for the restored DB instance.
|
4088
4126
|
#
|
@@ -4095,10 +4133,6 @@ module Aws::RDS
|
|
4095
4133
|
#
|
4096
4134
|
# This setting doesn't apply to RDS Custom.
|
4097
4135
|
#
|
4098
|
-
# Default: The same as source
|
4099
|
-
#
|
4100
|
-
# Constraint: Must be compatible with the engine of the source
|
4101
|
-
#
|
4102
4136
|
# Valid Values:
|
4103
4137
|
#
|
4104
4138
|
# * `mariadb`
|
@@ -4122,18 +4156,27 @@ module Aws::RDS
|
|
4122
4156
|
# * `sqlserver-ex`
|
4123
4157
|
#
|
4124
4158
|
# * `sqlserver-web`
|
4159
|
+
#
|
4160
|
+
# Default: The same as source
|
4161
|
+
#
|
4162
|
+
# Constraints:
|
4163
|
+
#
|
4164
|
+
# * Must be compatible with the engine of the source.
|
4165
|
+
#
|
4166
|
+
# ^
|
4125
4167
|
# @option options [Integer] :iops
|
4126
4168
|
# The amount of Provisioned IOPS (input/output operations per second) to
|
4127
|
-
#
|
4169
|
+
# initially allocate for the DB instance.
|
4128
4170
|
#
|
4129
|
-
#
|
4171
|
+
# This setting doesn't apply to SQL Server.
|
4130
4172
|
#
|
4131
|
-
#
|
4173
|
+
# Constraints:
|
4174
|
+
#
|
4175
|
+
# * Must be an integer greater than 1000.
|
4132
4176
|
#
|
4133
|
-
#
|
4134
|
-
# supported.
|
4177
|
+
# ^
|
4135
4178
|
# @option options [String] :option_group_name
|
4136
|
-
# The name of the option group to
|
4179
|
+
# The name of the option group to use for the restored DB instance.
|
4137
4180
|
#
|
4138
4181
|
# Permanent options, such as the TDE option for Oracle Advanced Security
|
4139
4182
|
# TDE, can't be removed from an option group, and that option group
|
@@ -4142,9 +4185,8 @@ module Aws::RDS
|
|
4142
4185
|
#
|
4143
4186
|
# This setting doesn't apply to RDS Custom.
|
4144
4187
|
# @option options [Boolean] :copy_tags_to_snapshot
|
4145
|
-
#
|
4146
|
-
#
|
4147
|
-
# copied.
|
4188
|
+
# Specifies whether to copy all tags from the restored DB instance to
|
4189
|
+
# snapshots of the DB instance. By default, tags are not copied.
|
4148
4190
|
# @option options [Array<Types::Tag>] :tags
|
4149
4191
|
# A list of tags. For more information, see [Tagging Amazon RDS
|
4150
4192
|
# Resources][1] in the *Amazon RDS User Guide.*
|
@@ -4153,14 +4195,19 @@ module Aws::RDS
|
|
4153
4195
|
#
|
4154
4196
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
4155
4197
|
# @option options [String] :storage_type
|
4156
|
-
#
|
4198
|
+
# The storage type to associate with the DB instance.
|
4157
4199
|
#
|
4158
|
-
# Valid
|
4200
|
+
# Valid Values: `gp2 | gp3 | io1 | standard`
|
4159
4201
|
#
|
4160
|
-
#
|
4161
|
-
# `
|
4202
|
+
# Default: `io1`, if the `Iops` parameter is specified. Otherwise,
|
4203
|
+
# `gp2`.
|
4162
4204
|
#
|
4163
|
-
#
|
4205
|
+
# Constraints:
|
4206
|
+
#
|
4207
|
+
# * If you specify `io1` or `gp3`, you must also include a value for the
|
4208
|
+
# `Iops` parameter.
|
4209
|
+
#
|
4210
|
+
# ^
|
4164
4211
|
# @option options [String] :tde_credential_arn
|
4165
4212
|
# The ARN from the key store with which to associate the instance for
|
4166
4213
|
# TDE encryption.
|
@@ -4177,8 +4224,8 @@ module Aws::RDS
|
|
4177
4224
|
# Default: The default EC2 VPC security group for the DB subnet group's
|
4178
4225
|
# VPC.
|
4179
4226
|
# @option options [String] :domain
|
4180
|
-
#
|
4181
|
-
#
|
4227
|
+
# The Active Directory directory ID to restore the DB instance in.
|
4228
|
+
# Create the domain before running this command. Currently, you can
|
4182
4229
|
# create only the MySQL, Microsoft SQL Server, Oracle, and PostgreSQL DB
|
4183
4230
|
# instances in an Active Directory Domain.
|
4184
4231
|
#
|
@@ -4242,9 +4289,9 @@ module Aws::RDS
|
|
4242
4289
|
#
|
4243
4290
|
# Example: `123.124.125.126,234.235.236.237`
|
4244
4291
|
# @option options [Boolean] :enable_iam_database_authentication
|
4245
|
-
#
|
4246
|
-
#
|
4247
|
-
#
|
4292
|
+
# Specifies whether to enable mapping of Amazon Web Services Identity
|
4293
|
+
# and Access Management (IAM) accounts to database accounts. By default,
|
4294
|
+
# mapping isn't enabled.
|
4248
4295
|
#
|
4249
4296
|
# This setting doesn't apply to RDS Custom.
|
4250
4297
|
#
|
@@ -4286,7 +4333,7 @@ module Aws::RDS
|
|
4286
4333
|
#
|
4287
4334
|
# Constraints:
|
4288
4335
|
#
|
4289
|
-
# * If supplied, must match the name of an existing
|
4336
|
+
# * If supplied, must match the name of an existing DB parameter group.
|
4290
4337
|
#
|
4291
4338
|
# * Must be 1 to 255 letters, numbers, or hyphens.
|
4292
4339
|
#
|
@@ -4294,10 +4341,10 @@ module Aws::RDS
|
|
4294
4341
|
#
|
4295
4342
|
# * Can't end with a hyphen or contain two consecutive hyphens.
|
4296
4343
|
# @option options [Boolean] :deletion_protection
|
4297
|
-
#
|
4298
|
-
#
|
4299
|
-
#
|
4300
|
-
#
|
4344
|
+
# Specifies whether the DB instance has deletion protection enabled. The
|
4345
|
+
# database can't be deleted when deletion protection is enabled. By
|
4346
|
+
# default, deletion protection isn't enabled. For more information, see
|
4347
|
+
# [ Deleting a DB Instance][1].
|
4301
4348
|
#
|
4302
4349
|
#
|
4303
4350
|
#
|
@@ -4320,12 +4367,12 @@ module Aws::RDS
|
|
4320
4367
|
# @option options [String] :source_db_instance_automated_backups_arn
|
4321
4368
|
# The Amazon Resource Name (ARN) of the replicated automated backups
|
4322
4369
|
# from which to restore, for example,
|
4323
|
-
# `arn:aws:rds:
|
4370
|
+
# `arn:aws:rds:us-east-1:123456789012:auto-backup:ab-L2IJCEXJP7XQ7HOJ4SIEXAMPLE`.
|
4324
4371
|
#
|
4325
4372
|
# This setting doesn't apply to RDS Custom.
|
4326
4373
|
# @option options [Boolean] :enable_customer_owned_ip
|
4327
|
-
#
|
4328
|
-
#
|
4374
|
+
# Specifies whether to enable a customer-owned IP address (CoIP) for an
|
4375
|
+
# RDS on Outposts DB instance.
|
4329
4376
|
#
|
4330
4377
|
# A *CoIP* provides local or external connectivity to resources in your
|
4331
4378
|
# Outpost subnets through your on-premises network. For some use cases,
|
@@ -4382,12 +4429,6 @@ module Aws::RDS
|
|
4382
4429
|
# @option options [String] :network_type
|
4383
4430
|
# The network type of the DB instance.
|
4384
4431
|
#
|
4385
|
-
# Valid values:
|
4386
|
-
#
|
4387
|
-
# * `IPV4`
|
4388
|
-
#
|
4389
|
-
# * `DUAL`
|
4390
|
-
#
|
4391
4432
|
# The network type is determined by the `DBSubnetGroup` specified for
|
4392
4433
|
# the DB instance. A `DBSubnetGroup` can support only the IPv4 protocol
|
4393
4434
|
# or the IPv4 and the IPv6 protocols (`DUAL`).
|
@@ -4395,11 +4436,17 @@ module Aws::RDS
|
|
4395
4436
|
# For more information, see [ Working with a DB instance in a VPC][1] in
|
4396
4437
|
# the *Amazon RDS User Guide.*
|
4397
4438
|
#
|
4439
|
+
# Valid Values:
|
4440
|
+
#
|
4441
|
+
# * `IPV4`
|
4442
|
+
#
|
4443
|
+
# * `DUAL`
|
4444
|
+
#
|
4398
4445
|
#
|
4399
4446
|
#
|
4400
4447
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
4401
4448
|
# @option options [Integer] :storage_throughput
|
4402
|
-
#
|
4449
|
+
# The storage throughput value for the DB instance.
|
4403
4450
|
#
|
4404
4451
|
# This setting doesn't apply to RDS Custom or Amazon Aurora.
|
4405
4452
|
# @option options [Integer] :allocated_storage
|
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -794,6 +794,14 @@ module Aws::RDS
|
|
794
794
|
|
795
795
|
# Data returned by the **DescribeCertificates** action.
|
796
796
|
#
|
797
|
+
# @!attribute [rw] default_certificate_for_new_launches
|
798
|
+
# The default root CA for new databases created by your Amazon Web
|
799
|
+
# Services account. This is either the root CA override set on your
|
800
|
+
# Amazon Web Services account or the system default CA for the Region
|
801
|
+
# if no override exists. To override the default CA, use the
|
802
|
+
# `ModifyCertificates` operation.
|
803
|
+
# @return [String]
|
804
|
+
#
|
797
805
|
# @!attribute [rw] certificates
|
798
806
|
# The list of `Certificate` objects for the Amazon Web Services
|
799
807
|
# account.
|
@@ -809,6 +817,7 @@ module Aws::RDS
|
|
809
817
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CertificateMessage AWS API Documentation
|
810
818
|
#
|
811
819
|
class CertificateMessage < Struct.new(
|
820
|
+
:default_certificate_for_new_launches,
|
812
821
|
:certificates,
|
813
822
|
:marker)
|
814
823
|
SENSITIVE = []
|
@@ -15144,7 +15153,7 @@ module Aws::RDS
|
|
15144
15153
|
# @!attribute [rw] allow_major_version_upgrade
|
15145
15154
|
# Specifies whether major version upgrades are allowed.
|
15146
15155
|
#
|
15147
|
-
# Valid for Cluster Type: Aurora DB clusters
|
15156
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
15148
15157
|
#
|
15149
15158
|
# Constraints:
|
15150
15159
|
#
|
@@ -15834,6 +15843,17 @@ module Aws::RDS
|
|
15834
15843
|
#
|
15835
15844
|
# Default: Uses existing setting
|
15836
15845
|
#
|
15846
|
+
# Constraints:
|
15847
|
+
#
|
15848
|
+
# * If you are modifying the DB instance class and upgrading the
|
15849
|
+
# engine version at the same time, the currently running engine
|
15850
|
+
# version must be supported on the specified DB instance class.
|
15851
|
+
# Otherwise, the operation returns an error. In this case, first run
|
15852
|
+
# the operation to modify the DB instance class, and then run it
|
15853
|
+
# again to upgrade the engine version.
|
15854
|
+
#
|
15855
|
+
# ^
|
15856
|
+
#
|
15837
15857
|
#
|
15838
15858
|
#
|
15839
15859
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html
|
@@ -16116,6 +16136,17 @@ module Aws::RDS
|
|
16116
16136
|
#
|
16117
16137
|
# In RDS Custom for Oracle, this parameter is supported for read
|
16118
16138
|
# replicas only if they are in the `PATCH_DB_FAILURE` lifecycle.
|
16139
|
+
#
|
16140
|
+
# Constraints:
|
16141
|
+
#
|
16142
|
+
# * If you are upgrading the engine version and modifying the DB
|
16143
|
+
# instance class at the same time, the currently running engine
|
16144
|
+
# version must be supported on the specified DB instance class.
|
16145
|
+
# Otherwise, the operation returns an error. In this case, first run
|
16146
|
+
# the operation to modify the DB instance class, and then run it
|
16147
|
+
# again to upgrade the engine version.
|
16148
|
+
#
|
16149
|
+
# ^
|
16119
16150
|
# @return [String]
|
16120
16151
|
#
|
16121
16152
|
# @!attribute [rw] allow_major_version_upgrade
|
@@ -20816,9 +20847,11 @@ module Aws::RDS
|
|
20816
20847
|
# @return [Array<String>]
|
20817
20848
|
#
|
20818
20849
|
# @!attribute [rw] db_cluster_parameter_group_name
|
20819
|
-
# The name of the DB cluster parameter group to associate with
|
20820
|
-
#
|
20821
|
-
#
|
20850
|
+
# The name of the custom DB cluster parameter group to associate with
|
20851
|
+
# this DB cluster.
|
20852
|
+
#
|
20853
|
+
# If the `DBClusterParameterGroupName` parameter is omitted, the
|
20854
|
+
# default DB cluster parameter group for the specified engine is used.
|
20822
20855
|
#
|
20823
20856
|
# Constraints:
|
20824
20857
|
#
|
@@ -20900,7 +20933,7 @@ module Aws::RDS
|
|
20900
20933
|
# database engines.
|
20901
20934
|
#
|
20902
20935
|
# For the full list of DB instance classes, and availability for your
|
20903
|
-
# engine, see [DB instance class][1] in the *Amazon RDS User Guide
|
20936
|
+
# engine, see [DB instance class][1] in the *Amazon RDS User Guide*.
|
20904
20937
|
#
|
20905
20938
|
# Valid for: Multi-AZ DB clusters only
|
20906
20939
|
#
|
@@ -22322,40 +22355,42 @@ module Aws::RDS
|
|
22322
22355
|
# @return [String]
|
22323
22356
|
#
|
22324
22357
|
# @!attribute [rw] target_db_instance_identifier
|
22325
|
-
# The name of the new DB instance to
|
22358
|
+
# The name of the new DB instance to create.
|
22326
22359
|
#
|
22327
22360
|
# Constraints:
|
22328
22361
|
#
|
22329
|
-
# * Must contain from 1 to 63 letters, numbers, or hyphens
|
22362
|
+
# * Must contain from 1 to 63 letters, numbers, or hyphens.
|
22330
22363
|
#
|
22331
|
-
# * First character must be a letter
|
22364
|
+
# * First character must be a letter.
|
22332
22365
|
#
|
22333
|
-
# * Can't end with a hyphen or contain two consecutive hyphens
|
22366
|
+
# * Can't end with a hyphen or contain two consecutive hyphens.
|
22334
22367
|
# @return [String]
|
22335
22368
|
#
|
22336
22369
|
# @!attribute [rw] restore_time
|
22337
22370
|
# The date and time to restore from.
|
22338
22371
|
#
|
22339
|
-
# Valid Values: Value must be a time in Universal Coordinated Time
|
22340
|
-
# (UTC) format
|
22341
|
-
#
|
22342
22372
|
# Constraints:
|
22343
22373
|
#
|
22344
|
-
# * Must be
|
22374
|
+
# * Must be a time in Universal Coordinated Time (UTC) format.
|
22375
|
+
#
|
22376
|
+
# * Must be before the latest restorable time for the DB instance.
|
22345
22377
|
#
|
22346
22378
|
# * Can't be specified if the `UseLatestRestorableTime` parameter is
|
22347
|
-
# enabled
|
22379
|
+
# enabled.
|
22348
22380
|
#
|
22349
22381
|
# Example: `2009-09-07T23:45:00Z`
|
22350
22382
|
# @return [Time]
|
22351
22383
|
#
|
22352
22384
|
# @!attribute [rw] use_latest_restorable_time
|
22353
|
-
#
|
22354
|
-
#
|
22355
|
-
#
|
22385
|
+
# Specifies whether the DB instance is restored from the latest backup
|
22386
|
+
# time. By default, the DB instance isn't restored from the latest
|
22387
|
+
# backup time.
|
22356
22388
|
#
|
22357
|
-
# Constraints:
|
22358
|
-
#
|
22389
|
+
# Constraints:
|
22390
|
+
#
|
22391
|
+
# * Can't be specified if the `RestoreTime` parameter is provided.
|
22392
|
+
#
|
22393
|
+
# ^
|
22359
22394
|
# @return [Boolean]
|
22360
22395
|
#
|
22361
22396
|
# @!attribute [rw] db_instance_class
|
@@ -22365,7 +22400,7 @@ module Aws::RDS
|
|
22365
22400
|
# the full list of DB instance classes, and availability for your
|
22366
22401
|
# engine, see [DB Instance Class][1] in the *Amazon RDS User Guide*.
|
22367
22402
|
#
|
22368
|
-
# Default: The same
|
22403
|
+
# Default: The same DB instance class as the original DB instance.
|
22369
22404
|
#
|
22370
22405
|
#
|
22371
22406
|
#
|
@@ -22375,9 +22410,13 @@ module Aws::RDS
|
|
22375
22410
|
# @!attribute [rw] port
|
22376
22411
|
# The port number on which the database accepts connections.
|
22377
22412
|
#
|
22378
|
-
# Constraints: Value must be `1150-65535`
|
22379
|
-
#
|
22380
22413
|
# Default: The same port as the original DB instance.
|
22414
|
+
#
|
22415
|
+
# Constraints:
|
22416
|
+
#
|
22417
|
+
# * The value must be `1150-65535`.
|
22418
|
+
#
|
22419
|
+
# ^
|
22381
22420
|
# @return [Integer]
|
22382
22421
|
#
|
22383
22422
|
# @!attribute [rw] availability_zone
|
@@ -22385,8 +22424,12 @@ module Aws::RDS
|
|
22385
22424
|
#
|
22386
22425
|
# Default: A random, system-chosen Availability Zone.
|
22387
22426
|
#
|
22388
|
-
#
|
22389
|
-
#
|
22427
|
+
# Constraints:
|
22428
|
+
#
|
22429
|
+
# * You can't specify the `AvailabilityZone` parameter if the DB
|
22430
|
+
# instance is a Multi-AZ deployment.
|
22431
|
+
#
|
22432
|
+
# ^
|
22390
22433
|
#
|
22391
22434
|
# Example: `us-east-1a`
|
22392
22435
|
# @return [String]
|
@@ -22394,25 +22437,30 @@ module Aws::RDS
|
|
22394
22437
|
# @!attribute [rw] db_subnet_group_name
|
22395
22438
|
# The DB subnet group name to use for the new instance.
|
22396
22439
|
#
|
22397
|
-
# Constraints:
|
22398
|
-
#
|
22440
|
+
# Constraints:
|
22441
|
+
#
|
22442
|
+
# * If supplied, must match the name of an existing DB subnet group.
|
22443
|
+
#
|
22444
|
+
# ^
|
22399
22445
|
#
|
22400
22446
|
# Example: `mydbsubnetgroup`
|
22401
22447
|
# @return [String]
|
22402
22448
|
#
|
22403
22449
|
# @!attribute [rw] multi_az
|
22404
|
-
#
|
22405
|
-
# deployment.
|
22450
|
+
# Secifies whether the DB instance is a Multi-AZ deployment.
|
22406
22451
|
#
|
22407
22452
|
# This setting doesn't apply to RDS Custom.
|
22408
22453
|
#
|
22409
|
-
#
|
22410
|
-
#
|
22454
|
+
# Constraints:
|
22455
|
+
#
|
22456
|
+
# * You can't specify the `AvailabilityZone` parameter if the DB
|
22457
|
+
# instance is a Multi-AZ deployment.
|
22458
|
+
#
|
22459
|
+
# ^
|
22411
22460
|
# @return [Boolean]
|
22412
22461
|
#
|
22413
22462
|
# @!attribute [rw] publicly_accessible
|
22414
|
-
#
|
22415
|
-
# accessible.
|
22463
|
+
# Specifies whether the DB instance is publicly accessible.
|
22416
22464
|
#
|
22417
22465
|
# When the DB cluster is publicly accessible, its Domain Name System
|
22418
22466
|
# (DNS) endpoint resolves to the private IP address from within the DB
|
@@ -22429,21 +22477,21 @@ module Aws::RDS
|
|
22429
22477
|
# @return [Boolean]
|
22430
22478
|
#
|
22431
22479
|
# @!attribute [rw] auto_minor_version_upgrade
|
22432
|
-
#
|
22433
|
-
#
|
22480
|
+
# Specifies whether minor version upgrades are applied automatically
|
22481
|
+
# to the DB instance during the maintenance window.
|
22434
22482
|
#
|
22435
22483
|
# This setting doesn't apply to RDS Custom.
|
22436
22484
|
# @return [Boolean]
|
22437
22485
|
#
|
22438
22486
|
# @!attribute [rw] license_model
|
22439
|
-
#
|
22487
|
+
# The license model information for the restored DB instance.
|
22440
22488
|
#
|
22441
22489
|
# This setting doesn't apply to RDS Custom.
|
22442
22490
|
#
|
22443
|
-
#
|
22444
|
-
#
|
22445
|
-
# Valid values: `license-included` \| `bring-your-own-license` \|
|
22491
|
+
# Valid Values: `license-included` \| `bring-your-own-license` \|
|
22446
22492
|
# `general-public-license`
|
22493
|
+
#
|
22494
|
+
# Default: Same as the source.
|
22447
22495
|
# @return [String]
|
22448
22496
|
#
|
22449
22497
|
# @!attribute [rw] db_name
|
@@ -22460,10 +22508,6 @@ module Aws::RDS
|
|
22460
22508
|
#
|
22461
22509
|
# This setting doesn't apply to RDS Custom.
|
22462
22510
|
#
|
22463
|
-
# Default: The same as source
|
22464
|
-
#
|
22465
|
-
# Constraint: Must be compatible with the engine of the source
|
22466
|
-
#
|
22467
22511
|
# Valid Values:
|
22468
22512
|
#
|
22469
22513
|
# * `mariadb`
|
@@ -22487,23 +22531,31 @@ module Aws::RDS
|
|
22487
22531
|
# * `sqlserver-ex`
|
22488
22532
|
#
|
22489
22533
|
# * `sqlserver-web`
|
22534
|
+
#
|
22535
|
+
# Default: The same as source
|
22536
|
+
#
|
22537
|
+
# Constraints:
|
22538
|
+
#
|
22539
|
+
# * Must be compatible with the engine of the source.
|
22540
|
+
#
|
22541
|
+
# ^
|
22490
22542
|
# @return [String]
|
22491
22543
|
#
|
22492
22544
|
# @!attribute [rw] iops
|
22493
22545
|
# The amount of Provisioned IOPS (input/output operations per second)
|
22494
|
-
# to
|
22546
|
+
# to initially allocate for the DB instance.
|
22495
22547
|
#
|
22496
|
-
#
|
22548
|
+
# This setting doesn't apply to SQL Server.
|
22497
22549
|
#
|
22498
|
-
#
|
22550
|
+
# Constraints:
|
22551
|
+
#
|
22552
|
+
# * Must be an integer greater than 1000.
|
22499
22553
|
#
|
22500
|
-
#
|
22501
|
-
# supported.
|
22554
|
+
# ^
|
22502
22555
|
# @return [Integer]
|
22503
22556
|
#
|
22504
22557
|
# @!attribute [rw] option_group_name
|
22505
|
-
# The name of the option group to
|
22506
|
-
# instance.
|
22558
|
+
# The name of the option group to use for the restored DB instance.
|
22507
22559
|
#
|
22508
22560
|
# Permanent options, such as the TDE option for Oracle Advanced
|
22509
22561
|
# Security TDE, can't be removed from an option group, and that
|
@@ -22514,9 +22566,8 @@ module Aws::RDS
|
|
22514
22566
|
# @return [String]
|
22515
22567
|
#
|
22516
22568
|
# @!attribute [rw] copy_tags_to_snapshot
|
22517
|
-
#
|
22518
|
-
#
|
22519
|
-
# copied.
|
22569
|
+
# Specifies whether to copy all tags from the restored DB instance to
|
22570
|
+
# snapshots of the DB instance. By default, tags are not copied.
|
22520
22571
|
# @return [Boolean]
|
22521
22572
|
#
|
22522
22573
|
# @!attribute [rw] tags
|
@@ -22529,14 +22580,19 @@ module Aws::RDS
|
|
22529
22580
|
# @return [Array<Types::Tag>]
|
22530
22581
|
#
|
22531
22582
|
# @!attribute [rw] storage_type
|
22532
|
-
#
|
22583
|
+
# The storage type to associate with the DB instance.
|
22533
22584
|
#
|
22534
|
-
# Valid
|
22585
|
+
# Valid Values: `gp2 | gp3 | io1 | standard`
|
22535
22586
|
#
|
22536
|
-
#
|
22537
|
-
# `
|
22587
|
+
# Default: `io1`, if the `Iops` parameter is specified. Otherwise,
|
22588
|
+
# `gp2`.
|
22538
22589
|
#
|
22539
|
-
#
|
22590
|
+
# Constraints:
|
22591
|
+
#
|
22592
|
+
# * If you specify `io1` or `gp3`, you must also include a value for
|
22593
|
+
# the `Iops` parameter.
|
22594
|
+
#
|
22595
|
+
# ^
|
22540
22596
|
# @return [String]
|
22541
22597
|
#
|
22542
22598
|
# @!attribute [rw] tde_credential_arn
|
@@ -22562,10 +22618,10 @@ module Aws::RDS
|
|
22562
22618
|
# @return [Array<String>]
|
22563
22619
|
#
|
22564
22620
|
# @!attribute [rw] domain
|
22565
|
-
#
|
22566
|
-
#
|
22567
|
-
#
|
22568
|
-
#
|
22621
|
+
# The Active Directory directory ID to restore the DB instance in.
|
22622
|
+
# Create the domain before running this command. Currently, you can
|
22623
|
+
# create only the MySQL, Microsoft SQL Server, Oracle, and PostgreSQL
|
22624
|
+
# DB instances in an Active Directory Domain.
|
22569
22625
|
#
|
22570
22626
|
# This setting doesn't apply to RDS Custom.
|
22571
22627
|
#
|
@@ -22641,9 +22697,9 @@ module Aws::RDS
|
|
22641
22697
|
# @return [Array<String>]
|
22642
22698
|
#
|
22643
22699
|
# @!attribute [rw] enable_iam_database_authentication
|
22644
|
-
#
|
22645
|
-
#
|
22646
|
-
#
|
22700
|
+
# Specifies whether to enable mapping of Amazon Web Services Identity
|
22701
|
+
# and Access Management (IAM) accounts to database accounts. By
|
22702
|
+
# default, mapping isn't enabled.
|
22647
22703
|
#
|
22648
22704
|
# This setting doesn't apply to RDS Custom.
|
22649
22705
|
#
|
@@ -22694,7 +22750,8 @@ module Aws::RDS
|
|
22694
22750
|
#
|
22695
22751
|
# Constraints:
|
22696
22752
|
#
|
22697
|
-
# * If supplied, must match the name of an existing
|
22753
|
+
# * If supplied, must match the name of an existing DB parameter
|
22754
|
+
# group.
|
22698
22755
|
#
|
22699
22756
|
# * Must be 1 to 255 letters, numbers, or hyphens.
|
22700
22757
|
#
|
@@ -22704,10 +22761,10 @@ module Aws::RDS
|
|
22704
22761
|
# @return [String]
|
22705
22762
|
#
|
22706
22763
|
# @!attribute [rw] deletion_protection
|
22707
|
-
#
|
22708
|
-
#
|
22709
|
-
#
|
22710
|
-
#
|
22764
|
+
# Specifies whether the DB instance has deletion protection enabled.
|
22765
|
+
# The database can't be deleted when deletion protection is enabled.
|
22766
|
+
# By default, deletion protection isn't enabled. For more
|
22767
|
+
# information, see [ Deleting a DB Instance][1].
|
22711
22768
|
#
|
22712
22769
|
#
|
22713
22770
|
#
|
@@ -22736,14 +22793,14 @@ module Aws::RDS
|
|
22736
22793
|
# @!attribute [rw] source_db_instance_automated_backups_arn
|
22737
22794
|
# The Amazon Resource Name (ARN) of the replicated automated backups
|
22738
22795
|
# from which to restore, for example,
|
22739
|
-
# `arn:aws:rds:
|
22796
|
+
# `arn:aws:rds:us-east-1:123456789012:auto-backup:ab-L2IJCEXJP7XQ7HOJ4SIEXAMPLE`.
|
22740
22797
|
#
|
22741
22798
|
# This setting doesn't apply to RDS Custom.
|
22742
22799
|
# @return [String]
|
22743
22800
|
#
|
22744
22801
|
# @!attribute [rw] enable_customer_owned_ip
|
22745
|
-
#
|
22746
|
-
#
|
22802
|
+
# Specifies whether to enable a customer-owned IP address (CoIP) for
|
22803
|
+
# an RDS on Outposts DB instance.
|
22747
22804
|
#
|
22748
22805
|
# A *CoIP* provides local or external connectivity to resources in
|
22749
22806
|
# your Outpost subnets through your on-premises network. For some use
|
@@ -22807,12 +22864,6 @@ module Aws::RDS
|
|
22807
22864
|
# @!attribute [rw] network_type
|
22808
22865
|
# The network type of the DB instance.
|
22809
22866
|
#
|
22810
|
-
# Valid values:
|
22811
|
-
#
|
22812
|
-
# * `IPV4`
|
22813
|
-
#
|
22814
|
-
# * `DUAL`
|
22815
|
-
#
|
22816
22867
|
# The network type is determined by the `DBSubnetGroup` specified for
|
22817
22868
|
# the DB instance. A `DBSubnetGroup` can support only the IPv4
|
22818
22869
|
# protocol or the IPv4 and the IPv6 protocols (`DUAL`).
|
@@ -22820,13 +22871,19 @@ module Aws::RDS
|
|
22820
22871
|
# For more information, see [ Working with a DB instance in a VPC][1]
|
22821
22872
|
# in the *Amazon RDS User Guide.*
|
22822
22873
|
#
|
22874
|
+
# Valid Values:
|
22875
|
+
#
|
22876
|
+
# * `IPV4`
|
22877
|
+
#
|
22878
|
+
# * `DUAL`
|
22879
|
+
#
|
22823
22880
|
#
|
22824
22881
|
#
|
22825
22882
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
22826
22883
|
# @return [String]
|
22827
22884
|
#
|
22828
22885
|
# @!attribute [rw] storage_throughput
|
22829
|
-
#
|
22886
|
+
# The storage throughput value for the DB instance.
|
22830
22887
|
#
|
22831
22888
|
# This setting doesn't apply to RDS Custom or Amazon Aurora.
|
22832
22889
|
# @return [Integer]
|
data/lib/aws-sdk-rds.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-rds
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.195.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-10-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sigv4
|