aws-sdk-rds 1.277.0 → 1.282.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 +25 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +180 -54
- data/lib/aws-sdk-rds/client_api.rb +7 -0
- data/lib/aws-sdk-rds/db_cluster.rb +8 -0
- data/lib/aws-sdk-rds/db_instance.rb +111 -37
- data/lib/aws-sdk-rds/db_snapshot.rb +29 -4
- data/lib/aws-sdk-rds/db_subnet_group.rb +4 -1
- data/lib/aws-sdk-rds/resource.rb +2 -0
- data/lib/aws-sdk-rds/types.rb +201 -68
- data/lib/aws-sdk-rds.rb +1 -1
- data/sig/client.rbs +3 -0
- data/sig/db_cluster.rbs +3 -0
- data/sig/db_instance.rbs +1 -0
- data/sig/db_snapshot.rbs +5 -0
- data/sig/types.rbs +5 -0
- 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: 5a62dcd656d3582a0fc973c19b7128d865c9f7bda609c6689e436ce9602f6c2c
|
4
|
+
data.tar.gz: d798727c3eb36367aa6f6209d0d6154dfe013068ee1e756c35b87d8903a02c4c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 110c3b6b0da5ab4db351da3d83ae61ba76b39473ae34fccfcca427356f4231097a2a900784a7290bde7f561963e535899db71eacf9470befcda9ede2b71d8b13
|
7
|
+
data.tar.gz: 17afaf3efce534f320be6ff1bde0b0d2a1bd3c92dc6a624d2c0f1b14d68f5e3bdb131e74593ba5eeaf2f7477b86155ce9e5099db7574b25f559ca2dd1c2cbeec
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,31 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.282.0 (2025-06-27)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - StartDBCluster and StopDBCluster can now throw InvalidDBShardGroupStateFault.
|
8
|
+
|
9
|
+
1.281.0 (2025-06-24)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Adding support for RDS on Dedicated Local Zones, including local backup target, snapshot availability zone and snapshot target
|
13
|
+
|
14
|
+
1.280.0 (2025-06-11)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Updates Amazon RDS documentation for Amazon RDS for Db2 cross-Region replicas in standby mode.
|
18
|
+
|
19
|
+
1.279.0 (2025-06-06)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Include Global Cluster Identifier in DBCluster if the DBCluster is a Global Cluster Member.
|
23
|
+
|
24
|
+
1.278.0 (2025-06-02)
|
25
|
+
------------------
|
26
|
+
|
27
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
28
|
+
|
4
29
|
1.277.0 (2025-05-20)
|
5
30
|
------------------
|
6
31
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.282.0
|
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -1841,6 +1841,22 @@ module Aws::RDS
|
|
1841
1841
|
# associate with the target DB snapshot. The associated option group can
|
1842
1842
|
# be copied only with cross-account snapshot copy calls.
|
1843
1843
|
#
|
1844
|
+
# @option params [String] :snapshot_availability_zone
|
1845
|
+
# Specifies the name of the Availability Zone where RDS stores the DB
|
1846
|
+
# snapshot. This value is valid only for snapshots that RDS stores on a
|
1847
|
+
# Dedicated Local Zone.
|
1848
|
+
#
|
1849
|
+
# @option params [String] :snapshot_target
|
1850
|
+
# Configures the location where RDS will store copied snapshots.
|
1851
|
+
#
|
1852
|
+
# Valid Values:
|
1853
|
+
#
|
1854
|
+
# * `local` (Dedicated Local Zone)
|
1855
|
+
#
|
1856
|
+
# * `outposts` (Amazon Web Services Outposts)
|
1857
|
+
#
|
1858
|
+
# * `region` (Amazon Web Services Region)
|
1859
|
+
#
|
1844
1860
|
# @option params [String] :source_region
|
1845
1861
|
# The source region of the snapshot. This is only needed when the
|
1846
1862
|
# shapshot is encrypted and in a different region.
|
@@ -1908,6 +1924,8 @@ module Aws::RDS
|
|
1908
1924
|
# option_group_name: "String",
|
1909
1925
|
# target_custom_availability_zone: "String",
|
1910
1926
|
# copy_option_group: false,
|
1927
|
+
# snapshot_availability_zone: "String",
|
1928
|
+
# snapshot_target: "String",
|
1911
1929
|
# source_region: "String",
|
1912
1930
|
# })
|
1913
1931
|
#
|
@@ -1953,6 +1971,7 @@ module Aws::RDS
|
|
1953
1971
|
# resp.db_snapshot.db_system_id #=> String
|
1954
1972
|
# resp.db_snapshot.dedicated_log_volume #=> Boolean
|
1955
1973
|
# resp.db_snapshot.multi_tenant #=> Boolean
|
1974
|
+
# resp.db_snapshot.snapshot_availability_zone #=> String
|
1956
1975
|
#
|
1957
1976
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CopyDBSnapshot AWS API Documentation
|
1958
1977
|
#
|
@@ -3906,6 +3925,7 @@ module Aws::RDS
|
|
3906
3925
|
# resp.db_cluster.tag_list #=> Array
|
3907
3926
|
# resp.db_cluster.tag_list[0].key #=> String
|
3908
3927
|
# resp.db_cluster.tag_list[0].value #=> String
|
3928
|
+
# resp.db_cluster.global_cluster_identifier #=> String
|
3909
3929
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
3910
3930
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
3911
3931
|
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
@@ -5570,6 +5590,8 @@ module Aws::RDS
|
|
5570
5590
|
#
|
5571
5591
|
# Valid Values:
|
5572
5592
|
#
|
5593
|
+
# * `local` (Dedicated Local Zone)
|
5594
|
+
#
|
5573
5595
|
# * `outposts` (Amazon Web Services Outposts)
|
5574
5596
|
#
|
5575
5597
|
# * `region` (Amazon Web Services Region)
|
@@ -6094,20 +6116,22 @@ module Aws::RDS
|
|
6094
6116
|
|
6095
6117
|
# Creates a new DB instance that acts as a read replica for an existing
|
6096
6118
|
# source DB instance or Multi-AZ DB cluster. You can create a read
|
6097
|
-
# replica for a DB instance running
|
6098
|
-
#
|
6099
|
-
#
|
6100
|
-
#
|
6101
|
-
#
|
6102
|
-
#
|
6119
|
+
# replica for a DB instance running MariaDB, MySQL, Oracle, PostgreSQL,
|
6120
|
+
# or SQL Server. You can create a read replica for a Multi-AZ DB cluster
|
6121
|
+
# running MySQL or PostgreSQL. For more information, see [Working with
|
6122
|
+
# read replicas][1] and [Migrating from a Multi-AZ DB cluster to a DB
|
6123
|
+
# instance using a read replica][2] in the *Amazon RDS User Guide*.
|
6124
|
+
#
|
6125
|
+
# Amazon RDS for Db2 supports this operation for standby replicas. To
|
6126
|
+
# create a standby replica for a DB instance running Db2, you must set
|
6127
|
+
# `ReplicaMode` to `mounted`.
|
6103
6128
|
#
|
6104
6129
|
# Amazon Aurora doesn't support this operation. To create a DB instance
|
6105
6130
|
# for an Aurora DB cluster, use the `CreateDBInstance` operation.
|
6106
6131
|
#
|
6107
|
-
#
|
6108
|
-
#
|
6109
|
-
#
|
6110
|
-
# as specified.
|
6132
|
+
# RDS creates read replicas with backups disabled. All other attributes
|
6133
|
+
# (including DB security groups and DB parameter groups) are inherited
|
6134
|
+
# from the source DB instance or cluster, except as specified.
|
6111
6135
|
#
|
6112
6136
|
# Your source DB instance or cluster must have backup retention enabled.
|
6113
6137
|
#
|
@@ -6123,8 +6147,14 @@ module Aws::RDS
|
|
6123
6147
|
#
|
6124
6148
|
# @option params [String] :source_db_instance_identifier
|
6125
6149
|
# The identifier of the DB instance that will act as the source for the
|
6126
|
-
# read replica. Each DB instance can have up to 15 read replicas,
|
6127
|
-
# the
|
6150
|
+
# read replica. Each DB instance can have up to 15 read replicas, except
|
6151
|
+
# for the following engines:
|
6152
|
+
#
|
6153
|
+
# * Db2 - Can have up to three replicas.
|
6154
|
+
#
|
6155
|
+
# * Oracle - Can have up to five read replicas.
|
6156
|
+
#
|
6157
|
+
# * SQL Server - Can have up to five read replicas.
|
6128
6158
|
#
|
6129
6159
|
# Constraints:
|
6130
6160
|
#
|
@@ -6233,6 +6263,16 @@ module Aws::RDS
|
|
6233
6263
|
# The name of the DB parameter group to associate with this read replica
|
6234
6264
|
# DB instance.
|
6235
6265
|
#
|
6266
|
+
# For the Db2 DB engine, if your source DB instance uses the Bring Your
|
6267
|
+
# Own License model, then a custom parameter group must be associated
|
6268
|
+
# with the replica. For a same Amazon Web Services Region replica, if
|
6269
|
+
# you don't specify a custom parameter group, Amazon RDS associates the
|
6270
|
+
# custom parameter group associated with the source DB instance. For a
|
6271
|
+
# cross-Region replica, you must specify a custom parameter group. This
|
6272
|
+
# custom parameter group must include your IBM Site ID and IBM Customer
|
6273
|
+
# ID. For more information, see [ IBM IDs for Bring Your Own License for
|
6274
|
+
# Db2][1].
|
6275
|
+
#
|
6236
6276
|
# For Single-AZ or Multi-AZ DB instance read replica instances, if you
|
6237
6277
|
# don't specify a value for `DBParameterGroupName`, then Amazon RDS
|
6238
6278
|
# uses the `DBParameterGroup` of the source DB instance for a same
|
@@ -6245,9 +6285,9 @@ module Aws::RDS
|
|
6245
6285
|
#
|
6246
6286
|
# Specifying a parameter group for this operation is only supported for
|
6247
6287
|
# MySQL DB instances for cross-Region read replicas, for Multi-AZ DB
|
6248
|
-
# cluster read replica instances,
|
6249
|
-
# supported for MySQL DB instances for same
|
6250
|
-
# RDS Custom.
|
6288
|
+
# cluster read replica instances, for Db2 DB instances, and for Oracle
|
6289
|
+
# DB instances. It isn't supported for MySQL DB instances for same
|
6290
|
+
# Region read replicas or for RDS Custom.
|
6251
6291
|
#
|
6252
6292
|
# Constraints:
|
6253
6293
|
#
|
@@ -6257,6 +6297,10 @@ module Aws::RDS
|
|
6257
6297
|
#
|
6258
6298
|
# * Can't end with a hyphen or contain two consecutive hyphens.
|
6259
6299
|
#
|
6300
|
+
#
|
6301
|
+
#
|
6302
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-licensing.html#db2-prereqs-ibm-info
|
6303
|
+
#
|
6260
6304
|
# @option params [Boolean] :publicly_accessible
|
6261
6305
|
# Specifies whether the DB instance is publicly accessible.
|
6262
6306
|
#
|
@@ -6630,31 +6674,50 @@ module Aws::RDS
|
|
6630
6674
|
# Example: `123.124.125.126,234.235.236.237`
|
6631
6675
|
#
|
6632
6676
|
# @option params [String] :replica_mode
|
6633
|
-
# The open mode of the replica database
|
6677
|
+
# The open mode of the replica database.
|
6634
6678
|
#
|
6635
|
-
# <note markdown="1"> This parameter is only supported for
|
6679
|
+
# <note markdown="1"> This parameter is only supported for Db2 DB instances and Oracle DB
|
6680
|
+
# instances.
|
6636
6681
|
#
|
6637
6682
|
# </note>
|
6638
6683
|
#
|
6639
|
-
#
|
6640
|
-
# Edition. The main use case for mounted replicas is cross-Region
|
6641
|
-
# disaster recovery. The primary database doesn't use Active Data Guard
|
6642
|
-
# to transmit information to the mounted replica. Because it doesn't
|
6643
|
-
# accept user connections, a mounted replica can't serve a read-only
|
6644
|
-
# workload.
|
6684
|
+
# Db2
|
6645
6685
|
#
|
6646
|
-
#
|
6647
|
-
#
|
6648
|
-
#
|
6649
|
-
#
|
6686
|
+
# : Standby DB replicas are included in Db2 Advanced Edition (AE) and
|
6687
|
+
# Db2 Standard Edition (SE). The main use case for standby replicas is
|
6688
|
+
# cross-Region disaster recovery. Because it doesn't accept user
|
6689
|
+
# connections, a standby replica can't serve a read-only workload.
|
6650
6690
|
#
|
6651
|
-
#
|
6652
|
-
#
|
6653
|
-
#
|
6691
|
+
# You can create a combination of standby and read-only DB replicas
|
6692
|
+
# for the same primary DB instance. For more information, see [Working
|
6693
|
+
# with read replicas for Amazon RDS for Db2][1] in the *Amazon RDS
|
6694
|
+
# User Guide*.
|
6654
6695
|
#
|
6696
|
+
# To create standby DB replicas for RDS for Db2, set this parameter to
|
6697
|
+
# `mounted`.
|
6655
6698
|
#
|
6699
|
+
# Oracle
|
6656
6700
|
#
|
6657
|
-
#
|
6701
|
+
# : Mounted DB replicas are included in Oracle Database Enterprise
|
6702
|
+
# Edition. The main use case for mounted replicas is cross-Region
|
6703
|
+
# disaster recovery. The primary database doesn't use Active Data
|
6704
|
+
# Guard to transmit information to the mounted replica. Because it
|
6705
|
+
# doesn't accept user connections, a mounted replica can't serve a
|
6706
|
+
# read-only workload.
|
6707
|
+
#
|
6708
|
+
# You can create a combination of mounted and read-only DB replicas
|
6709
|
+
# for the same primary DB instance. For more information, see [Working
|
6710
|
+
# with read replicas for Amazon RDS for Oracle][2] in the *Amazon RDS
|
6711
|
+
# User Guide*.
|
6712
|
+
#
|
6713
|
+
# For RDS Custom, you must specify this parameter and set it to
|
6714
|
+
# `mounted`. The value won't be set by default. After replica
|
6715
|
+
# creation, you can manage the open mode manually.
|
6716
|
+
#
|
6717
|
+
#
|
6718
|
+
#
|
6719
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-replication.html
|
6720
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html
|
6658
6721
|
#
|
6659
6722
|
# @option params [Integer] :max_allocated_storage
|
6660
6723
|
# The upper limit in gibibytes (GiB) to which Amazon RDS can
|
@@ -6737,6 +6800,15 @@ module Aws::RDS
|
|
6737
6800
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
6738
6801
|
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/routing.html#ip-addressing
|
6739
6802
|
#
|
6803
|
+
# @option params [String] :backup_target
|
6804
|
+
# The location where RDS stores automated backups and manual snapshots.
|
6805
|
+
#
|
6806
|
+
# Valid Values:
|
6807
|
+
#
|
6808
|
+
# * `local` for Dedicated Local Zones
|
6809
|
+
#
|
6810
|
+
# * `region` for Amazon Web Services Region
|
6811
|
+
#
|
6740
6812
|
# @option params [Integer] :allocated_storage
|
6741
6813
|
# The amount of storage (in gibibytes) to allocate initially for the
|
6742
6814
|
# read replica. Follow the allocation rules specified in
|
@@ -6876,6 +6948,7 @@ module Aws::RDS
|
|
6876
6948
|
# network_type: "String",
|
6877
6949
|
# storage_throughput: 1,
|
6878
6950
|
# enable_customer_owned_ip: false,
|
6951
|
+
# backup_target: "String",
|
6879
6952
|
# allocated_storage: 1,
|
6880
6953
|
# source_db_cluster_identifier: "String",
|
6881
6954
|
# dedicated_log_volume: false,
|
@@ -7520,17 +7593,17 @@ module Aws::RDS
|
|
7520
7593
|
# The name of the primary DB cluster for the DB shard group.
|
7521
7594
|
#
|
7522
7595
|
# @option params [Integer] :compute_redundancy
|
7523
|
-
# Specifies whether to create standby DB shard
|
7524
|
-
# group. Valid values are the following:
|
7596
|
+
# Specifies whether to create standby standby DB data access shard for
|
7597
|
+
# the DB shard group. Valid values are the following:
|
7525
7598
|
#
|
7526
|
-
# * 0 - Creates a DB shard group without a standby DB shard
|
7527
|
-
# is the default value.
|
7599
|
+
# * 0 - Creates a DB shard group without a standby DB data access shard.
|
7600
|
+
# This is the default value.
|
7528
7601
|
#
|
7529
|
-
# * 1 - Creates a DB shard group with a standby DB shard
|
7530
|
-
# different Availability Zone (AZ).
|
7602
|
+
# * 1 - Creates a DB shard group with a standby DB data access shard in
|
7603
|
+
# a different Availability Zone (AZ).
|
7531
7604
|
#
|
7532
|
-
# * 2 - Creates a DB shard group with two standby DB
|
7533
|
-
# different AZs.
|
7605
|
+
# * 2 - Creates a DB shard group with two standby DB data access shard
|
7606
|
+
# in two different AZs.
|
7534
7607
|
#
|
7535
7608
|
# @option params [required, Float] :max_acu
|
7536
7609
|
# The maximum capacity of the DB shard group in Aurora capacity units
|
@@ -7782,6 +7855,7 @@ module Aws::RDS
|
|
7782
7855
|
# resp.db_snapshot.db_system_id #=> String
|
7783
7856
|
# resp.db_snapshot.dedicated_log_volume #=> Boolean
|
7784
7857
|
# resp.db_snapshot.multi_tenant #=> Boolean
|
7858
|
+
# resp.db_snapshot.snapshot_availability_zone #=> String
|
7785
7859
|
#
|
7786
7860
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBSnapshot AWS API Documentation
|
7787
7861
|
#
|
@@ -9350,6 +9424,7 @@ module Aws::RDS
|
|
9350
9424
|
# resp.db_cluster.tag_list #=> Array
|
9351
9425
|
# resp.db_cluster.tag_list[0].key #=> String
|
9352
9426
|
# resp.db_cluster.tag_list[0].value #=> String
|
9427
|
+
# resp.db_cluster.global_cluster_identifier #=> String
|
9353
9428
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
9354
9429
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
9355
9430
|
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
@@ -10472,6 +10547,7 @@ module Aws::RDS
|
|
10472
10547
|
# resp.db_snapshot.db_system_id #=> String
|
10473
10548
|
# resp.db_snapshot.dedicated_log_volume #=> Boolean
|
10474
10549
|
# resp.db_snapshot.multi_tenant #=> Boolean
|
10550
|
+
# resp.db_snapshot.snapshot_availability_zone #=> String
|
10475
10551
|
#
|
10476
10552
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBSnapshot AWS API Documentation
|
10477
10553
|
#
|
@@ -12802,6 +12878,7 @@ module Aws::RDS
|
|
12802
12878
|
# resp.db_clusters[0].tag_list #=> Array
|
12803
12879
|
# resp.db_clusters[0].tag_list[0].key #=> String
|
12804
12880
|
# resp.db_clusters[0].tag_list[0].value #=> String
|
12881
|
+
# resp.db_clusters[0].global_cluster_identifier #=> String
|
12805
12882
|
# resp.db_clusters[0].global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
12806
12883
|
# resp.db_clusters[0].global_write_forwarding_requested #=> Boolean
|
12807
12884
|
# resp.db_clusters[0].pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
@@ -15211,6 +15288,7 @@ module Aws::RDS
|
|
15211
15288
|
# resp.db_snapshots[0].db_system_id #=> String
|
15212
15289
|
# resp.db_snapshots[0].dedicated_log_volume #=> Boolean
|
15213
15290
|
# resp.db_snapshots[0].multi_tenant #=> Boolean
|
15291
|
+
# resp.db_snapshots[0].snapshot_availability_zone #=> String
|
15214
15292
|
#
|
15215
15293
|
#
|
15216
15294
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -17912,6 +17990,17 @@ module Aws::RDS
|
|
17912
17990
|
#
|
17913
17991
|
# This command doesn't apply to RDS Custom.
|
17914
17992
|
#
|
17993
|
+
# <note markdown="1"> This operation uses resources on database instances. Because of this,
|
17994
|
+
# we recommend publishing database logs to CloudWatch and then using the
|
17995
|
+
# GetLogEvents operation. For more information, see [GetLogEvents][1] in
|
17996
|
+
# the *Amazon CloudWatch Logs API Reference*.
|
17997
|
+
#
|
17998
|
+
# </note>
|
17999
|
+
#
|
18000
|
+
#
|
18001
|
+
#
|
18002
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_GetLogEvents.html
|
18003
|
+
#
|
17915
18004
|
# @option params [required, String] :db_instance_identifier
|
17916
18005
|
# The customer-assigned name of the DB instance that contains the log
|
17917
18006
|
# files you want to list.
|
@@ -18226,6 +18315,7 @@ module Aws::RDS
|
|
18226
18315
|
# resp.db_cluster.tag_list #=> Array
|
18227
18316
|
# resp.db_cluster.tag_list[0].key #=> String
|
18228
18317
|
# resp.db_cluster.tag_list[0].value #=> String
|
18318
|
+
# resp.db_cluster.global_cluster_identifier #=> String
|
18229
18319
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
18230
18320
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
18231
18321
|
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
@@ -19952,6 +20042,7 @@ module Aws::RDS
|
|
19952
20042
|
# resp.db_cluster.tag_list #=> Array
|
19953
20043
|
# resp.db_cluster.tag_list[0].key #=> String
|
19954
20044
|
# resp.db_cluster.tag_list[0].value #=> String
|
20045
|
+
# resp.db_cluster.global_cluster_identifier #=> String
|
19955
20046
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
19956
20047
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
19957
20048
|
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
@@ -21267,26 +21358,50 @@ module Aws::RDS
|
|
21267
21358
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL-certificate-rotation.html
|
21268
21359
|
#
|
21269
21360
|
# @option params [String] :replica_mode
|
21270
|
-
#
|
21271
|
-
# mounted or read-only.
|
21361
|
+
# The open mode of a replica database.
|
21272
21362
|
#
|
21273
|
-
# <note markdown="1">
|
21363
|
+
# <note markdown="1"> This parameter is only supported for Db2 DB instances and Oracle DB
|
21364
|
+
# instances.
|
21274
21365
|
#
|
21275
21366
|
# </note>
|
21276
21367
|
#
|
21277
|
-
#
|
21278
|
-
# main use case for mounted replicas is cross-Region disaster recovery.
|
21279
|
-
# The primary database doesn't use Active Data Guard to transmit
|
21280
|
-
# information to the mounted replica. Because it doesn't accept user
|
21281
|
-
# connections, a mounted replica can't serve a read-only workload. For
|
21282
|
-
# more information, see [Working with Oracle Read Replicas for Amazon
|
21283
|
-
# RDS][1] in the *Amazon RDS User Guide*.
|
21368
|
+
# Db2
|
21284
21369
|
#
|
21285
|
-
#
|
21370
|
+
# : Standby DB replicas are included in Db2 Advanced Edition (AE) and
|
21371
|
+
# Db2 Standard Edition (SE). The main use case for standby replicas is
|
21372
|
+
# cross-Region disaster recovery. Because it doesn't accept user
|
21373
|
+
# connections, a standby replica can't serve a read-only workload.
|
21374
|
+
#
|
21375
|
+
# You can create a combination of standby and read-only DB replicas
|
21376
|
+
# for the same primary DB instance. For more information, see [Working
|
21377
|
+
# with read replicas for Amazon RDS for Db2][1] in the *Amazon RDS
|
21378
|
+
# User Guide*.
|
21286
21379
|
#
|
21380
|
+
# To create standby DB replicas for RDS for Db2, set this parameter to
|
21381
|
+
# `mounted`.
|
21287
21382
|
#
|
21383
|
+
# Oracle
|
21288
21384
|
#
|
21289
|
-
#
|
21385
|
+
# : Mounted DB replicas are included in Oracle Database Enterprise
|
21386
|
+
# Edition. The main use case for mounted replicas is cross-Region
|
21387
|
+
# disaster recovery. The primary database doesn't use Active Data
|
21388
|
+
# Guard to transmit information to the mounted replica. Because it
|
21389
|
+
# doesn't accept user connections, a mounted replica can't serve a
|
21390
|
+
# read-only workload.
|
21391
|
+
#
|
21392
|
+
# You can create a combination of mounted and read-only DB replicas
|
21393
|
+
# for the same primary DB instance. For more information, see [Working
|
21394
|
+
# with read replicas for Amazon RDS for Oracle][2] in the *Amazon RDS
|
21395
|
+
# User Guide*.
|
21396
|
+
#
|
21397
|
+
# For RDS Custom, you must specify this parameter and set it to
|
21398
|
+
# `mounted`. The value won't be set by default. After replica
|
21399
|
+
# creation, you can manage the open mode manually.
|
21400
|
+
#
|
21401
|
+
#
|
21402
|
+
#
|
21403
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-replication.html
|
21404
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html
|
21290
21405
|
#
|
21291
21406
|
# @option params [Boolean] :enable_customer_owned_ip
|
21292
21407
|
# Specifies whether to enable a customer-owned IP address (CoIP) for an
|
@@ -22484,6 +22599,7 @@ module Aws::RDS
|
|
22484
22599
|
# resp.db_snapshot.db_system_id #=> String
|
22485
22600
|
# resp.db_snapshot.dedicated_log_volume #=> Boolean
|
22486
22601
|
# resp.db_snapshot.multi_tenant #=> Boolean
|
22602
|
+
# resp.db_snapshot.snapshot_availability_zone #=> String
|
22487
22603
|
#
|
22488
22604
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBSnapshot AWS API Documentation
|
22489
22605
|
#
|
@@ -23832,6 +23948,7 @@ module Aws::RDS
|
|
23832
23948
|
# resp.db_cluster.tag_list #=> Array
|
23833
23949
|
# resp.db_cluster.tag_list[0].key #=> String
|
23834
23950
|
# resp.db_cluster.tag_list[0].value #=> String
|
23951
|
+
# resp.db_cluster.global_cluster_identifier #=> String
|
23835
23952
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
23836
23953
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
23837
23954
|
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
@@ -24135,6 +24252,7 @@ module Aws::RDS
|
|
24135
24252
|
# resp.db_cluster.tag_list #=> Array
|
24136
24253
|
# resp.db_cluster.tag_list[0].key #=> String
|
24137
24254
|
# resp.db_cluster.tag_list[0].value #=> String
|
24255
|
+
# resp.db_cluster.global_cluster_identifier #=> String
|
24138
24256
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
24139
24257
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
24140
24258
|
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
@@ -25737,6 +25855,7 @@ module Aws::RDS
|
|
25737
25855
|
# resp.db_cluster.tag_list #=> Array
|
25738
25856
|
# resp.db_cluster.tag_list[0].key #=> String
|
25739
25857
|
# resp.db_cluster.tag_list[0].value #=> String
|
25858
|
+
# resp.db_cluster.global_cluster_identifier #=> String
|
25740
25859
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
25741
25860
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
25742
25861
|
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
@@ -26561,6 +26680,7 @@ module Aws::RDS
|
|
26561
26680
|
# resp.db_cluster.tag_list #=> Array
|
26562
26681
|
# resp.db_cluster.tag_list[0].key #=> String
|
26563
26682
|
# resp.db_cluster.tag_list[0].value #=> String
|
26683
|
+
# resp.db_cluster.global_cluster_identifier #=> String
|
26564
26684
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
26565
26685
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
26566
26686
|
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
@@ -27368,6 +27488,7 @@ module Aws::RDS
|
|
27368
27488
|
# resp.db_cluster.tag_list #=> Array
|
27369
27489
|
# resp.db_cluster.tag_list[0].key #=> String
|
27370
27490
|
# resp.db_cluster.tag_list[0].value #=> String
|
27491
|
+
# resp.db_cluster.global_cluster_identifier #=> String
|
27371
27492
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
27372
27493
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
27373
27494
|
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
@@ -27929,8 +28050,9 @@ module Aws::RDS
|
|
27929
28050
|
# Specifies where automated backups and manual snapshots are stored for
|
27930
28051
|
# the restored DB instance.
|
27931
28052
|
#
|
27932
|
-
# Possible values are `
|
27933
|
-
# `region` (Amazon Web Services Region). The
|
28053
|
+
# Possible values are `local` (Dedicated Local Zone), `outposts` (Amazon
|
28054
|
+
# Web Services Outposts), and `region` (Amazon Web Services Region). The
|
28055
|
+
# default is `region`.
|
27934
28056
|
#
|
27935
28057
|
# For more information, see [Working with Amazon RDS on Amazon Web
|
27936
28058
|
# Services Outposts][1] in the *Amazon RDS User Guide*.
|
@@ -29714,6 +29836,8 @@ module Aws::RDS
|
|
29714
29836
|
#
|
29715
29837
|
# Valid Values:
|
29716
29838
|
#
|
29839
|
+
# * `local` (Dedicated Local Zone)
|
29840
|
+
#
|
29717
29841
|
# * `outposts` (Amazon Web Services Outposts)
|
29718
29842
|
#
|
29719
29843
|
# * `region` (Amazon Web Services Region)
|
@@ -30541,6 +30665,7 @@ module Aws::RDS
|
|
30541
30665
|
# resp.db_cluster.tag_list #=> Array
|
30542
30666
|
# resp.db_cluster.tag_list[0].key #=> String
|
30543
30667
|
# resp.db_cluster.tag_list[0].value #=> String
|
30668
|
+
# resp.db_cluster.global_cluster_identifier #=> String
|
30544
30669
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
30545
30670
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
30546
30671
|
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
@@ -31375,6 +31500,7 @@ module Aws::RDS
|
|
31375
31500
|
# resp.db_cluster.tag_list #=> Array
|
31376
31501
|
# resp.db_cluster.tag_list[0].key #=> String
|
31377
31502
|
# resp.db_cluster.tag_list[0].value #=> String
|
31503
|
+
# resp.db_cluster.global_cluster_identifier #=> String
|
31378
31504
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
31379
31505
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
31380
31506
|
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
@@ -32285,7 +32411,7 @@ module Aws::RDS
|
|
32285
32411
|
tracer: tracer
|
32286
32412
|
)
|
32287
32413
|
context[:gem_name] = 'aws-sdk-rds'
|
32288
|
-
context[:gem_version] = '1.
|
32414
|
+
context[:gem_version] = '1.282.0'
|
32289
32415
|
Seahorse::Client::Request.new(handlers, context)
|
32290
32416
|
end
|
32291
32417
|
|
@@ -987,6 +987,8 @@ module Aws::RDS
|
|
987
987
|
CopyDBSnapshotMessage.add_member(:option_group_name, Shapes::ShapeRef.new(shape: String, location_name: "OptionGroupName"))
|
988
988
|
CopyDBSnapshotMessage.add_member(:target_custom_availability_zone, Shapes::ShapeRef.new(shape: String, location_name: "TargetCustomAvailabilityZone"))
|
989
989
|
CopyDBSnapshotMessage.add_member(:copy_option_group, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "CopyOptionGroup"))
|
990
|
+
CopyDBSnapshotMessage.add_member(:snapshot_availability_zone, Shapes::ShapeRef.new(shape: String, location_name: "SnapshotAvailabilityZone"))
|
991
|
+
CopyDBSnapshotMessage.add_member(:snapshot_target, Shapes::ShapeRef.new(shape: String, location_name: "SnapshotTarget"))
|
990
992
|
CopyDBSnapshotMessage.add_member(:source_region, Shapes::ShapeRef.new(shape: String, location_name: "SourceRegion"))
|
991
993
|
CopyDBSnapshotMessage.struct_class = Types::CopyDBSnapshotMessage
|
992
994
|
|
@@ -1228,6 +1230,7 @@ module Aws::RDS
|
|
1228
1230
|
CreateDBInstanceReadReplicaMessage.add_member(:network_type, Shapes::ShapeRef.new(shape: String, location_name: "NetworkType"))
|
1229
1231
|
CreateDBInstanceReadReplicaMessage.add_member(:storage_throughput, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "StorageThroughput"))
|
1230
1232
|
CreateDBInstanceReadReplicaMessage.add_member(:enable_customer_owned_ip, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnableCustomerOwnedIp"))
|
1233
|
+
CreateDBInstanceReadReplicaMessage.add_member(:backup_target, Shapes::ShapeRef.new(shape: String, location_name: "BackupTarget"))
|
1231
1234
|
CreateDBInstanceReadReplicaMessage.add_member(:allocated_storage, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "AllocatedStorage"))
|
1232
1235
|
CreateDBInstanceReadReplicaMessage.add_member(:source_db_cluster_identifier, Shapes::ShapeRef.new(shape: String, location_name: "SourceDBClusterIdentifier"))
|
1233
1236
|
CreateDBInstanceReadReplicaMessage.add_member(:dedicated_log_volume, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DedicatedLogVolume"))
|
@@ -1439,6 +1442,7 @@ module Aws::RDS
|
|
1439
1442
|
DBCluster.add_member(:cross_account_clone, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "CrossAccountClone"))
|
1440
1443
|
DBCluster.add_member(:domain_memberships, Shapes::ShapeRef.new(shape: DomainMembershipList, location_name: "DomainMemberships"))
|
1441
1444
|
DBCluster.add_member(:tag_list, Shapes::ShapeRef.new(shape: TagList, location_name: "TagList"))
|
1445
|
+
DBCluster.add_member(:global_cluster_identifier, Shapes::ShapeRef.new(shape: GlobalClusterIdentifier, location_name: "GlobalClusterIdentifier"))
|
1442
1446
|
DBCluster.add_member(:global_write_forwarding_status, Shapes::ShapeRef.new(shape: WriteForwardingStatus, location_name: "GlobalWriteForwardingStatus"))
|
1443
1447
|
DBCluster.add_member(:global_write_forwarding_requested, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "GlobalWriteForwardingRequested"))
|
1444
1448
|
DBCluster.add_member(:pending_modified_values, Shapes::ShapeRef.new(shape: ClusterPendingModifiedValues, location_name: "PendingModifiedValues"))
|
@@ -2109,6 +2113,7 @@ module Aws::RDS
|
|
2109
2113
|
DBSnapshot.add_member(:db_system_id, Shapes::ShapeRef.new(shape: String, location_name: "DBSystemId"))
|
2110
2114
|
DBSnapshot.add_member(:dedicated_log_volume, Shapes::ShapeRef.new(shape: Boolean, location_name: "DedicatedLogVolume"))
|
2111
2115
|
DBSnapshot.add_member(:multi_tenant, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "MultiTenant"))
|
2116
|
+
DBSnapshot.add_member(:snapshot_availability_zone, Shapes::ShapeRef.new(shape: String, location_name: "SnapshotAvailabilityZone"))
|
2112
2117
|
DBSnapshot.struct_class = Types::DBSnapshot
|
2113
2118
|
|
2114
2119
|
DBSnapshotAlreadyExistsFault.struct_class = Types::DBSnapshotAlreadyExistsFault
|
@@ -6495,6 +6500,7 @@ module Aws::RDS
|
|
6495
6500
|
o.errors << Shapes::ShapeRef.new(shape: DBClusterNotFoundFault)
|
6496
6501
|
o.errors << Shapes::ShapeRef.new(shape: InvalidDBClusterStateFault)
|
6497
6502
|
o.errors << Shapes::ShapeRef.new(shape: InvalidDBInstanceStateFault)
|
6503
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidDBShardGroupStateFault)
|
6498
6504
|
end)
|
6499
6505
|
|
6500
6506
|
api.add_operation(:start_db_instance, Seahorse::Model::Operation.new.tap do |o|
|
@@ -6569,6 +6575,7 @@ module Aws::RDS
|
|
6569
6575
|
o.errors << Shapes::ShapeRef.new(shape: DBClusterNotFoundFault)
|
6570
6576
|
o.errors << Shapes::ShapeRef.new(shape: InvalidDBClusterStateFault)
|
6571
6577
|
o.errors << Shapes::ShapeRef.new(shape: InvalidDBInstanceStateFault)
|
6578
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidDBShardGroupStateFault)
|
6572
6579
|
end)
|
6573
6580
|
|
6574
6581
|
api.add_operation(:stop_db_instance, Seahorse::Model::Operation.new.tap do |o|
|
@@ -480,6 +480,14 @@ module Aws::RDS
|
|
480
480
|
data[:tag_list]
|
481
481
|
end
|
482
482
|
|
483
|
+
# Contains a user-supplied global database cluster identifier. This
|
484
|
+
# identifier is the unique key that identifies a global database
|
485
|
+
# cluster.
|
486
|
+
# @return [String]
|
487
|
+
def global_cluster_identifier
|
488
|
+
data[:global_cluster_identifier]
|
489
|
+
end
|
490
|
+
|
483
491
|
# The status of write forwarding for a secondary cluster in an Aurora
|
484
492
|
# global database.
|
485
493
|
# @return [String]
|