aws-sdk-rds 1.277.0 → 1.285.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 +40 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +200 -68
- 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 +113 -43
- 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/errors.rb +0 -1
- data/lib/aws-sdk-rds/resource.rb +4 -6
- data/lib/aws-sdk-rds/types.rb +203 -74
- data/lib/aws-sdk-rds.rb +1 -1
- data/sig/client.rbs +4 -0
- data/sig/db_cluster.rbs +3 -0
- data/sig/db_instance.rbs +1 -0
- data/sig/db_snapshot.rbs +5 -0
- data/sig/resource.rbs +1 -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: 2711f1f704c8ad37323733aa34668055e1bc0e1aae84710b1b8ed84bf36799ea
|
4
|
+
data.tar.gz: 8752c11108efbc6f3131d53ca88f118e1bee229f91d6e30a1ce1494c5e8db4b0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a96e76fddd0d036dd03dd10c48fdd26f933f1dfb9fd72470d867bb4eaa81108225946fcf6e5f2c4ac1d3661baed40ed2cdd477c6df63c1f5dfe9c33c7c3fcf07
|
7
|
+
data.tar.gz: 9bf9f2ae9f83b1cd3a63a5090f7c61ebad2d7882d3a8c074b5a2df2402582c49b6d13f67ba72b0a51c0e936119183d7d787ae94dbd447abdae1b920fcde5445b
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,46 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.285.0 (2025-07-31)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.284.0 (2025-07-21)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.283.0 (2025-07-01)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Amazon RDS Custom for Oracle now supports multi-AZ database instances.
|
18
|
+
|
19
|
+
1.282.0 (2025-06-27)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - StartDBCluster and StopDBCluster can now throw InvalidDBShardGroupStateFault.
|
23
|
+
|
24
|
+
1.281.0 (2025-06-24)
|
25
|
+
------------------
|
26
|
+
|
27
|
+
* Feature - Adding support for RDS on Dedicated Local Zones, including local backup target, snapshot availability zone and snapshot target
|
28
|
+
|
29
|
+
1.280.0 (2025-06-11)
|
30
|
+
------------------
|
31
|
+
|
32
|
+
* Feature - Updates Amazon RDS documentation for Amazon RDS for Db2 cross-Region replicas in standby mode.
|
33
|
+
|
34
|
+
1.279.0 (2025-06-06)
|
35
|
+
------------------
|
36
|
+
|
37
|
+
* Feature - Include Global Cluster Identifier in DBCluster if the DBCluster is a Global Cluster Member.
|
38
|
+
|
39
|
+
1.278.0 (2025-06-02)
|
40
|
+
------------------
|
41
|
+
|
42
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
43
|
+
|
4
44
|
1.277.0 (2025-05-20)
|
5
45
|
------------------
|
6
46
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.285.0
|
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -97,7 +97,7 @@ module Aws::RDS
|
|
97
97
|
# class name or an instance of a plugin class.
|
98
98
|
#
|
99
99
|
# @option options [required, Aws::CredentialProvider] :credentials
|
100
|
-
# Your AWS credentials. This can be an instance of any one of the
|
100
|
+
# Your AWS credentials used for authentication. This can be an instance of any one of the
|
101
101
|
# following classes:
|
102
102
|
#
|
103
103
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
@@ -130,18 +130,23 @@ module Aws::RDS
|
|
130
130
|
# locations will be searched for credentials:
|
131
131
|
#
|
132
132
|
# * `Aws.config[:credentials]`
|
133
|
+
#
|
133
134
|
# * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
|
134
135
|
# `:account_id` options.
|
135
|
-
#
|
136
|
-
#
|
136
|
+
#
|
137
|
+
# * `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
|
138
|
+
# `ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
|
139
|
+
#
|
137
140
|
# * `~/.aws/credentials`
|
141
|
+
#
|
138
142
|
# * `~/.aws/config`
|
143
|
+
#
|
139
144
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
140
145
|
# are very aggressive. Construct and pass an instance of
|
141
146
|
# `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
142
147
|
# enable retries and extended timeouts. Instance profile credential
|
143
|
-
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
144
|
-
# to true
|
148
|
+
# fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
|
149
|
+
# to `true`.
|
145
150
|
#
|
146
151
|
# @option options [required, String] :region
|
147
152
|
# The AWS region to connect to. The configured `:region` is
|
@@ -169,6 +174,11 @@ module Aws::RDS
|
|
169
174
|
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
170
175
|
# not retry instead of sleeping.
|
171
176
|
#
|
177
|
+
# @option options [Array<String>] :auth_scheme_preference
|
178
|
+
# A list of preferred authentication schemes to use when making a request. Supported values are:
|
179
|
+
# `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
|
180
|
+
# shared config as `auth_scheme_preference`, the value should be a comma-separated list.
|
181
|
+
#
|
172
182
|
# @option options [Boolean] :client_side_monitoring (false)
|
173
183
|
# When `true`, client-side metrics will be collected for all API requests from
|
174
184
|
# this client.
|
@@ -255,8 +265,8 @@ module Aws::RDS
|
|
255
265
|
# 4 times. Used in `standard` and `adaptive` retry modes.
|
256
266
|
#
|
257
267
|
# @option options [String] :profile ("default")
|
258
|
-
# Used when loading credentials from the shared credentials file
|
259
|
-
#
|
268
|
+
# Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
|
269
|
+
# When not specified, 'default' is used.
|
260
270
|
#
|
261
271
|
# @option options [String] :request_checksum_calculation ("when_supported")
|
262
272
|
# Determines when a checksum will be calculated for request payloads. Values are:
|
@@ -369,7 +379,7 @@ module Aws::RDS
|
|
369
379
|
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
370
380
|
#
|
371
381
|
# @option options [Aws::TokenProvider] :token_provider
|
372
|
-
#
|
382
|
+
# Your Bearer token used for authentication. This can be an instance of any one of the
|
373
383
|
# following classes:
|
374
384
|
#
|
375
385
|
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
@@ -1841,6 +1851,22 @@ module Aws::RDS
|
|
1841
1851
|
# associate with the target DB snapshot. The associated option group can
|
1842
1852
|
# be copied only with cross-account snapshot copy calls.
|
1843
1853
|
#
|
1854
|
+
# @option params [String] :snapshot_availability_zone
|
1855
|
+
# Specifies the name of the Availability Zone where RDS stores the DB
|
1856
|
+
# snapshot. This value is valid only for snapshots that RDS stores on a
|
1857
|
+
# Dedicated Local Zone.
|
1858
|
+
#
|
1859
|
+
# @option params [String] :snapshot_target
|
1860
|
+
# Configures the location where RDS will store copied snapshots.
|
1861
|
+
#
|
1862
|
+
# Valid Values:
|
1863
|
+
#
|
1864
|
+
# * `local` (Dedicated Local Zone)
|
1865
|
+
#
|
1866
|
+
# * `outposts` (Amazon Web Services Outposts)
|
1867
|
+
#
|
1868
|
+
# * `region` (Amazon Web Services Region)
|
1869
|
+
#
|
1844
1870
|
# @option params [String] :source_region
|
1845
1871
|
# The source region of the snapshot. This is only needed when the
|
1846
1872
|
# shapshot is encrypted and in a different region.
|
@@ -1908,6 +1934,8 @@ module Aws::RDS
|
|
1908
1934
|
# option_group_name: "String",
|
1909
1935
|
# target_custom_availability_zone: "String",
|
1910
1936
|
# copy_option_group: false,
|
1937
|
+
# snapshot_availability_zone: "String",
|
1938
|
+
# snapshot_target: "String",
|
1911
1939
|
# source_region: "String",
|
1912
1940
|
# })
|
1913
1941
|
#
|
@@ -1953,6 +1981,7 @@ module Aws::RDS
|
|
1953
1981
|
# resp.db_snapshot.db_system_id #=> String
|
1954
1982
|
# resp.db_snapshot.dedicated_log_volume #=> Boolean
|
1955
1983
|
# resp.db_snapshot.multi_tenant #=> Boolean
|
1984
|
+
# resp.db_snapshot.snapshot_availability_zone #=> String
|
1956
1985
|
#
|
1957
1986
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CopyDBSnapshot AWS API Documentation
|
1958
1987
|
#
|
@@ -3906,6 +3935,7 @@ module Aws::RDS
|
|
3906
3935
|
# resp.db_cluster.tag_list #=> Array
|
3907
3936
|
# resp.db_cluster.tag_list[0].key #=> String
|
3908
3937
|
# resp.db_cluster.tag_list[0].value #=> String
|
3938
|
+
# resp.db_cluster.global_cluster_identifier #=> String
|
3909
3939
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
3910
3940
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
3911
3941
|
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
@@ -4958,12 +4988,8 @@ module Aws::RDS
|
|
4958
4988
|
# set the `AvailabilityZone` parameter if the DB instance is a Multi-AZ
|
4959
4989
|
# deployment.
|
4960
4990
|
#
|
4961
|
-
# This setting doesn't apply to the
|
4962
|
-
#
|
4963
|
-
# * Amazon Aurora (DB instance Availability Zones (AZs) are managed by
|
4964
|
-
# the DB cluster.)
|
4965
|
-
#
|
4966
|
-
# * RDS Custom
|
4991
|
+
# This setting doesn't apply to Amazon Aurora because the DB instance
|
4992
|
+
# Availability Zones (AZs) are managed by the DB cluster.
|
4967
4993
|
#
|
4968
4994
|
# @option params [String] :engine_version
|
4969
4995
|
# The version number of the database engine to use.
|
@@ -5570,6 +5596,8 @@ module Aws::RDS
|
|
5570
5596
|
#
|
5571
5597
|
# Valid Values:
|
5572
5598
|
#
|
5599
|
+
# * `local` (Dedicated Local Zone)
|
5600
|
+
#
|
5573
5601
|
# * `outposts` (Amazon Web Services Outposts)
|
5574
5602
|
#
|
5575
5603
|
# * `region` (Amazon Web Services Region)
|
@@ -6094,20 +6122,22 @@ module Aws::RDS
|
|
6094
6122
|
|
6095
6123
|
# Creates a new DB instance that acts as a read replica for an existing
|
6096
6124
|
# 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
|
-
#
|
6125
|
+
# replica for a DB instance running MariaDB, MySQL, Oracle, PostgreSQL,
|
6126
|
+
# or SQL Server. You can create a read replica for a Multi-AZ DB cluster
|
6127
|
+
# running MySQL or PostgreSQL. For more information, see [Working with
|
6128
|
+
# read replicas][1] and [Migrating from a Multi-AZ DB cluster to a DB
|
6129
|
+
# instance using a read replica][2] in the *Amazon RDS User Guide*.
|
6130
|
+
#
|
6131
|
+
# Amazon RDS for Db2 supports this operation for standby replicas. To
|
6132
|
+
# create a standby replica for a DB instance running Db2, you must set
|
6133
|
+
# `ReplicaMode` to `mounted`.
|
6103
6134
|
#
|
6104
6135
|
# Amazon Aurora doesn't support this operation. To create a DB instance
|
6105
6136
|
# for an Aurora DB cluster, use the `CreateDBInstance` operation.
|
6106
6137
|
#
|
6107
|
-
#
|
6108
|
-
#
|
6109
|
-
#
|
6110
|
-
# as specified.
|
6138
|
+
# RDS creates read replicas with backups disabled. All other attributes
|
6139
|
+
# (including DB security groups and DB parameter groups) are inherited
|
6140
|
+
# from the source DB instance or cluster, except as specified.
|
6111
6141
|
#
|
6112
6142
|
# Your source DB instance or cluster must have backup retention enabled.
|
6113
6143
|
#
|
@@ -6123,8 +6153,14 @@ module Aws::RDS
|
|
6123
6153
|
#
|
6124
6154
|
# @option params [String] :source_db_instance_identifier
|
6125
6155
|
# 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
|
6156
|
+
# read replica. Each DB instance can have up to 15 read replicas, except
|
6157
|
+
# for the following engines:
|
6158
|
+
#
|
6159
|
+
# * Db2 - Can have up to three replicas.
|
6160
|
+
#
|
6161
|
+
# * Oracle - Can have up to five read replicas.
|
6162
|
+
#
|
6163
|
+
# * SQL Server - Can have up to five read replicas.
|
6128
6164
|
#
|
6129
6165
|
# Constraints:
|
6130
6166
|
#
|
@@ -6233,6 +6269,16 @@ module Aws::RDS
|
|
6233
6269
|
# The name of the DB parameter group to associate with this read replica
|
6234
6270
|
# DB instance.
|
6235
6271
|
#
|
6272
|
+
# For the Db2 DB engine, if your source DB instance uses the Bring Your
|
6273
|
+
# Own License model, then a custom parameter group must be associated
|
6274
|
+
# with the replica. For a same Amazon Web Services Region replica, if
|
6275
|
+
# you don't specify a custom parameter group, Amazon RDS associates the
|
6276
|
+
# custom parameter group associated with the source DB instance. For a
|
6277
|
+
# cross-Region replica, you must specify a custom parameter group. This
|
6278
|
+
# custom parameter group must include your IBM Site ID and IBM Customer
|
6279
|
+
# ID. For more information, see [ IBM IDs for Bring Your Own License for
|
6280
|
+
# Db2][1].
|
6281
|
+
#
|
6236
6282
|
# For Single-AZ or Multi-AZ DB instance read replica instances, if you
|
6237
6283
|
# don't specify a value for `DBParameterGroupName`, then Amazon RDS
|
6238
6284
|
# uses the `DBParameterGroup` of the source DB instance for a same
|
@@ -6245,9 +6291,9 @@ module Aws::RDS
|
|
6245
6291
|
#
|
6246
6292
|
# Specifying a parameter group for this operation is only supported for
|
6247
6293
|
# 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.
|
6294
|
+
# cluster read replica instances, for Db2 DB instances, and for Oracle
|
6295
|
+
# DB instances. It isn't supported for MySQL DB instances for same
|
6296
|
+
# Region read replicas or for RDS Custom.
|
6251
6297
|
#
|
6252
6298
|
# Constraints:
|
6253
6299
|
#
|
@@ -6257,6 +6303,10 @@ module Aws::RDS
|
|
6257
6303
|
#
|
6258
6304
|
# * Can't end with a hyphen or contain two consecutive hyphens.
|
6259
6305
|
#
|
6306
|
+
#
|
6307
|
+
#
|
6308
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-licensing.html#db2-prereqs-ibm-info
|
6309
|
+
#
|
6260
6310
|
# @option params [Boolean] :publicly_accessible
|
6261
6311
|
# Specifies whether the DB instance is publicly accessible.
|
6262
6312
|
#
|
@@ -6630,31 +6680,50 @@ module Aws::RDS
|
|
6630
6680
|
# Example: `123.124.125.126,234.235.236.237`
|
6631
6681
|
#
|
6632
6682
|
# @option params [String] :replica_mode
|
6633
|
-
# The open mode of the replica database
|
6683
|
+
# The open mode of the replica database.
|
6634
6684
|
#
|
6635
|
-
# <note markdown="1"> This parameter is only supported for
|
6685
|
+
# <note markdown="1"> This parameter is only supported for Db2 DB instances and Oracle DB
|
6686
|
+
# instances.
|
6636
6687
|
#
|
6637
6688
|
# </note>
|
6638
6689
|
#
|
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.
|
6690
|
+
# Db2
|
6645
6691
|
#
|
6646
|
-
#
|
6647
|
-
#
|
6648
|
-
#
|
6649
|
-
#
|
6692
|
+
# : Standby DB replicas are included in Db2 Advanced Edition (AE) and
|
6693
|
+
# Db2 Standard Edition (SE). The main use case for standby replicas is
|
6694
|
+
# cross-Region disaster recovery. Because it doesn't accept user
|
6695
|
+
# connections, a standby replica can't serve a read-only workload.
|
6650
6696
|
#
|
6651
|
-
#
|
6652
|
-
#
|
6653
|
-
#
|
6697
|
+
# You can create a combination of standby and read-only DB replicas
|
6698
|
+
# for the same primary DB instance. For more information, see [Working
|
6699
|
+
# with read replicas for Amazon RDS for Db2][1] in the *Amazon RDS
|
6700
|
+
# User Guide*.
|
6701
|
+
#
|
6702
|
+
# To create standby DB replicas for RDS for Db2, set this parameter to
|
6703
|
+
# `mounted`.
|
6654
6704
|
#
|
6705
|
+
# Oracle
|
6655
6706
|
#
|
6707
|
+
# : Mounted DB replicas are included in Oracle Database Enterprise
|
6708
|
+
# Edition. The main use case for mounted replicas is cross-Region
|
6709
|
+
# disaster recovery. The primary database doesn't use Active Data
|
6710
|
+
# Guard to transmit information to the mounted replica. Because it
|
6711
|
+
# doesn't accept user connections, a mounted replica can't serve a
|
6712
|
+
# read-only workload.
|
6713
|
+
#
|
6714
|
+
# You can create a combination of mounted and read-only DB replicas
|
6715
|
+
# for the same primary DB instance. For more information, see [Working
|
6716
|
+
# with read replicas for Amazon RDS for Oracle][2] in the *Amazon RDS
|
6717
|
+
# User Guide*.
|
6656
6718
|
#
|
6657
|
-
#
|
6719
|
+
# For RDS Custom, you must specify this parameter and set it to
|
6720
|
+
# `mounted`. The value won't be set by default. After replica
|
6721
|
+
# creation, you can manage the open mode manually.
|
6722
|
+
#
|
6723
|
+
#
|
6724
|
+
#
|
6725
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-replication.html
|
6726
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html
|
6658
6727
|
#
|
6659
6728
|
# @option params [Integer] :max_allocated_storage
|
6660
6729
|
# The upper limit in gibibytes (GiB) to which Amazon RDS can
|
@@ -6737,6 +6806,15 @@ module Aws::RDS
|
|
6737
6806
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
6738
6807
|
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/routing.html#ip-addressing
|
6739
6808
|
#
|
6809
|
+
# @option params [String] :backup_target
|
6810
|
+
# The location where RDS stores automated backups and manual snapshots.
|
6811
|
+
#
|
6812
|
+
# Valid Values:
|
6813
|
+
#
|
6814
|
+
# * `local` for Dedicated Local Zones
|
6815
|
+
#
|
6816
|
+
# * `region` for Amazon Web Services Region
|
6817
|
+
#
|
6740
6818
|
# @option params [Integer] :allocated_storage
|
6741
6819
|
# The amount of storage (in gibibytes) to allocate initially for the
|
6742
6820
|
# read replica. Follow the allocation rules specified in
|
@@ -6876,6 +6954,7 @@ module Aws::RDS
|
|
6876
6954
|
# network_type: "String",
|
6877
6955
|
# storage_throughput: 1,
|
6878
6956
|
# enable_customer_owned_ip: false,
|
6957
|
+
# backup_target: "String",
|
6879
6958
|
# allocated_storage: 1,
|
6880
6959
|
# source_db_cluster_identifier: "String",
|
6881
6960
|
# dedicated_log_volume: false,
|
@@ -7520,17 +7599,17 @@ module Aws::RDS
|
|
7520
7599
|
# The name of the primary DB cluster for the DB shard group.
|
7521
7600
|
#
|
7522
7601
|
# @option params [Integer] :compute_redundancy
|
7523
|
-
# Specifies whether to create standby DB shard
|
7524
|
-
# group. Valid values are the following:
|
7602
|
+
# Specifies whether to create standby standby DB data access shard for
|
7603
|
+
# the DB shard group. Valid values are the following:
|
7525
7604
|
#
|
7526
|
-
# * 0 - Creates a DB shard group without a standby DB shard
|
7527
|
-
# is the default value.
|
7605
|
+
# * 0 - Creates a DB shard group without a standby DB data access shard.
|
7606
|
+
# This is the default value.
|
7528
7607
|
#
|
7529
|
-
# * 1 - Creates a DB shard group with a standby DB shard
|
7530
|
-
# different Availability Zone (AZ).
|
7608
|
+
# * 1 - Creates a DB shard group with a standby DB data access shard in
|
7609
|
+
# a different Availability Zone (AZ).
|
7531
7610
|
#
|
7532
|
-
# * 2 - Creates a DB shard group with two standby DB
|
7533
|
-
# different AZs.
|
7611
|
+
# * 2 - Creates a DB shard group with two standby DB data access shard
|
7612
|
+
# in two different AZs.
|
7534
7613
|
#
|
7535
7614
|
# @option params [required, Float] :max_acu
|
7536
7615
|
# The maximum capacity of the DB shard group in Aurora capacity units
|
@@ -7782,6 +7861,7 @@ module Aws::RDS
|
|
7782
7861
|
# resp.db_snapshot.db_system_id #=> String
|
7783
7862
|
# resp.db_snapshot.dedicated_log_volume #=> Boolean
|
7784
7863
|
# resp.db_snapshot.multi_tenant #=> Boolean
|
7864
|
+
# resp.db_snapshot.snapshot_availability_zone #=> String
|
7785
7865
|
#
|
7786
7866
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBSnapshot AWS API Documentation
|
7787
7867
|
#
|
@@ -9350,6 +9430,7 @@ module Aws::RDS
|
|
9350
9430
|
# resp.db_cluster.tag_list #=> Array
|
9351
9431
|
# resp.db_cluster.tag_list[0].key #=> String
|
9352
9432
|
# resp.db_cluster.tag_list[0].value #=> String
|
9433
|
+
# resp.db_cluster.global_cluster_identifier #=> String
|
9353
9434
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
9354
9435
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
9355
9436
|
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
@@ -10472,6 +10553,7 @@ module Aws::RDS
|
|
10472
10553
|
# resp.db_snapshot.db_system_id #=> String
|
10473
10554
|
# resp.db_snapshot.dedicated_log_volume #=> Boolean
|
10474
10555
|
# resp.db_snapshot.multi_tenant #=> Boolean
|
10556
|
+
# resp.db_snapshot.snapshot_availability_zone #=> String
|
10475
10557
|
#
|
10476
10558
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBSnapshot AWS API Documentation
|
10477
10559
|
#
|
@@ -12802,6 +12884,7 @@ module Aws::RDS
|
|
12802
12884
|
# resp.db_clusters[0].tag_list #=> Array
|
12803
12885
|
# resp.db_clusters[0].tag_list[0].key #=> String
|
12804
12886
|
# resp.db_clusters[0].tag_list[0].value #=> String
|
12887
|
+
# resp.db_clusters[0].global_cluster_identifier #=> String
|
12805
12888
|
# resp.db_clusters[0].global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
12806
12889
|
# resp.db_clusters[0].global_write_forwarding_requested #=> Boolean
|
12807
12890
|
# resp.db_clusters[0].pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
@@ -15211,6 +15294,7 @@ module Aws::RDS
|
|
15211
15294
|
# resp.db_snapshots[0].db_system_id #=> String
|
15212
15295
|
# resp.db_snapshots[0].dedicated_log_volume #=> Boolean
|
15213
15296
|
# resp.db_snapshots[0].multi_tenant #=> Boolean
|
15297
|
+
# resp.db_snapshots[0].snapshot_availability_zone #=> String
|
15214
15298
|
#
|
15215
15299
|
#
|
15216
15300
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -17912,6 +17996,17 @@ module Aws::RDS
|
|
17912
17996
|
#
|
17913
17997
|
# This command doesn't apply to RDS Custom.
|
17914
17998
|
#
|
17999
|
+
# <note markdown="1"> This operation uses resources on database instances. Because of this,
|
18000
|
+
# we recommend publishing database logs to CloudWatch and then using the
|
18001
|
+
# GetLogEvents operation. For more information, see [GetLogEvents][1] in
|
18002
|
+
# the *Amazon CloudWatch Logs API Reference*.
|
18003
|
+
#
|
18004
|
+
# </note>
|
18005
|
+
#
|
18006
|
+
#
|
18007
|
+
#
|
18008
|
+
# [1]: https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_GetLogEvents.html
|
18009
|
+
#
|
17915
18010
|
# @option params [required, String] :db_instance_identifier
|
17916
18011
|
# The customer-assigned name of the DB instance that contains the log
|
17917
18012
|
# files you want to list.
|
@@ -18226,6 +18321,7 @@ module Aws::RDS
|
|
18226
18321
|
# resp.db_cluster.tag_list #=> Array
|
18227
18322
|
# resp.db_cluster.tag_list[0].key #=> String
|
18228
18323
|
# resp.db_cluster.tag_list[0].value #=> String
|
18324
|
+
# resp.db_cluster.global_cluster_identifier #=> String
|
18229
18325
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
18230
18326
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
18231
18327
|
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
@@ -19952,6 +20048,7 @@ module Aws::RDS
|
|
19952
20048
|
# resp.db_cluster.tag_list #=> Array
|
19953
20049
|
# resp.db_cluster.tag_list[0].key #=> String
|
19954
20050
|
# resp.db_cluster.tag_list[0].value #=> String
|
20051
|
+
# resp.db_cluster.global_cluster_identifier #=> String
|
19955
20052
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
19956
20053
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
19957
20054
|
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
@@ -21267,26 +21364,50 @@ module Aws::RDS
|
|
21267
21364
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL-certificate-rotation.html
|
21268
21365
|
#
|
21269
21366
|
# @option params [String] :replica_mode
|
21270
|
-
#
|
21271
|
-
# mounted or read-only.
|
21367
|
+
# The open mode of a replica database.
|
21272
21368
|
#
|
21273
|
-
# <note markdown="1">
|
21369
|
+
# <note markdown="1"> This parameter is only supported for Db2 DB instances and Oracle DB
|
21370
|
+
# instances.
|
21274
21371
|
#
|
21275
21372
|
# </note>
|
21276
21373
|
#
|
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*.
|
21374
|
+
# Db2
|
21284
21375
|
#
|
21285
|
-
#
|
21376
|
+
# : Standby DB replicas are included in Db2 Advanced Edition (AE) and
|
21377
|
+
# Db2 Standard Edition (SE). The main use case for standby replicas is
|
21378
|
+
# cross-Region disaster recovery. Because it doesn't accept user
|
21379
|
+
# connections, a standby replica can't serve a read-only workload.
|
21286
21380
|
#
|
21381
|
+
# You can create a combination of standby and read-only DB replicas
|
21382
|
+
# for the same primary DB instance. For more information, see [Working
|
21383
|
+
# with read replicas for Amazon RDS for Db2][1] in the *Amazon RDS
|
21384
|
+
# User Guide*.
|
21287
21385
|
#
|
21386
|
+
# To create standby DB replicas for RDS for Db2, set this parameter to
|
21387
|
+
# `mounted`.
|
21288
21388
|
#
|
21289
|
-
#
|
21389
|
+
# Oracle
|
21390
|
+
#
|
21391
|
+
# : Mounted DB replicas are included in Oracle Database Enterprise
|
21392
|
+
# Edition. The main use case for mounted replicas is cross-Region
|
21393
|
+
# disaster recovery. The primary database doesn't use Active Data
|
21394
|
+
# Guard to transmit information to the mounted replica. Because it
|
21395
|
+
# doesn't accept user connections, a mounted replica can't serve a
|
21396
|
+
# read-only workload.
|
21397
|
+
#
|
21398
|
+
# You can create a combination of mounted and read-only DB replicas
|
21399
|
+
# for the same primary DB instance. For more information, see [Working
|
21400
|
+
# with read replicas for Amazon RDS for Oracle][2] in the *Amazon RDS
|
21401
|
+
# User Guide*.
|
21402
|
+
#
|
21403
|
+
# For RDS Custom, you must specify this parameter and set it to
|
21404
|
+
# `mounted`. The value won't be set by default. After replica
|
21405
|
+
# creation, you can manage the open mode manually.
|
21406
|
+
#
|
21407
|
+
#
|
21408
|
+
#
|
21409
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-replication.html
|
21410
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html
|
21290
21411
|
#
|
21291
21412
|
# @option params [Boolean] :enable_customer_owned_ip
|
21292
21413
|
# Specifies whether to enable a customer-owned IP address (CoIP) for an
|
@@ -22484,6 +22605,7 @@ module Aws::RDS
|
|
22484
22605
|
# resp.db_snapshot.db_system_id #=> String
|
22485
22606
|
# resp.db_snapshot.dedicated_log_volume #=> Boolean
|
22486
22607
|
# resp.db_snapshot.multi_tenant #=> Boolean
|
22608
|
+
# resp.db_snapshot.snapshot_availability_zone #=> String
|
22487
22609
|
#
|
22488
22610
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBSnapshot AWS API Documentation
|
22489
22611
|
#
|
@@ -23832,6 +23954,7 @@ module Aws::RDS
|
|
23832
23954
|
# resp.db_cluster.tag_list #=> Array
|
23833
23955
|
# resp.db_cluster.tag_list[0].key #=> String
|
23834
23956
|
# resp.db_cluster.tag_list[0].value #=> String
|
23957
|
+
# resp.db_cluster.global_cluster_identifier #=> String
|
23835
23958
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
23836
23959
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
23837
23960
|
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
@@ -24135,6 +24258,7 @@ module Aws::RDS
|
|
24135
24258
|
# resp.db_cluster.tag_list #=> Array
|
24136
24259
|
# resp.db_cluster.tag_list[0].key #=> String
|
24137
24260
|
# resp.db_cluster.tag_list[0].value #=> String
|
24261
|
+
# resp.db_cluster.global_cluster_identifier #=> String
|
24138
24262
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
24139
24263
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
24140
24264
|
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
@@ -25737,6 +25861,7 @@ module Aws::RDS
|
|
25737
25861
|
# resp.db_cluster.tag_list #=> Array
|
25738
25862
|
# resp.db_cluster.tag_list[0].key #=> String
|
25739
25863
|
# resp.db_cluster.tag_list[0].value #=> String
|
25864
|
+
# resp.db_cluster.global_cluster_identifier #=> String
|
25740
25865
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
25741
25866
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
25742
25867
|
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
@@ -26561,6 +26686,7 @@ module Aws::RDS
|
|
26561
26686
|
# resp.db_cluster.tag_list #=> Array
|
26562
26687
|
# resp.db_cluster.tag_list[0].key #=> String
|
26563
26688
|
# resp.db_cluster.tag_list[0].value #=> String
|
26689
|
+
# resp.db_cluster.global_cluster_identifier #=> String
|
26564
26690
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
26565
26691
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
26566
26692
|
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
@@ -27368,6 +27494,7 @@ module Aws::RDS
|
|
27368
27494
|
# resp.db_cluster.tag_list #=> Array
|
27369
27495
|
# resp.db_cluster.tag_list[0].key #=> String
|
27370
27496
|
# resp.db_cluster.tag_list[0].value #=> String
|
27497
|
+
# resp.db_cluster.global_cluster_identifier #=> String
|
27371
27498
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
27372
27499
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
27373
27500
|
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
@@ -27929,8 +28056,9 @@ module Aws::RDS
|
|
27929
28056
|
# Specifies where automated backups and manual snapshots are stored for
|
27930
28057
|
# the restored DB instance.
|
27931
28058
|
#
|
27932
|
-
# Possible values are `
|
27933
|
-
# `region` (Amazon Web Services Region). The
|
28059
|
+
# Possible values are `local` (Dedicated Local Zone), `outposts` (Amazon
|
28060
|
+
# Web Services Outposts), and `region` (Amazon Web Services Region). The
|
28061
|
+
# default is `region`.
|
27934
28062
|
#
|
27935
28063
|
# For more information, see [Working with Amazon RDS on Amazon Web
|
27936
28064
|
# Services Outposts][1] in the *Amazon RDS User Guide*.
|
@@ -29714,6 +29842,8 @@ module Aws::RDS
|
|
29714
29842
|
#
|
29715
29843
|
# Valid Values:
|
29716
29844
|
#
|
29845
|
+
# * `local` (Dedicated Local Zone)
|
29846
|
+
#
|
29717
29847
|
# * `outposts` (Amazon Web Services Outposts)
|
29718
29848
|
#
|
29719
29849
|
# * `region` (Amazon Web Services Region)
|
@@ -30541,6 +30671,7 @@ module Aws::RDS
|
|
30541
30671
|
# resp.db_cluster.tag_list #=> Array
|
30542
30672
|
# resp.db_cluster.tag_list[0].key #=> String
|
30543
30673
|
# resp.db_cluster.tag_list[0].value #=> String
|
30674
|
+
# resp.db_cluster.global_cluster_identifier #=> String
|
30544
30675
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
30545
30676
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
30546
30677
|
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
@@ -31375,6 +31506,7 @@ module Aws::RDS
|
|
31375
31506
|
# resp.db_cluster.tag_list #=> Array
|
31376
31507
|
# resp.db_cluster.tag_list[0].key #=> String
|
31377
31508
|
# resp.db_cluster.tag_list[0].value #=> String
|
31509
|
+
# resp.db_cluster.global_cluster_identifier #=> String
|
31378
31510
|
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
31379
31511
|
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
31380
31512
|
# resp.db_cluster.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable #=> Array
|
@@ -32285,7 +32417,7 @@ module Aws::RDS
|
|
32285
32417
|
tracer: tracer
|
32286
32418
|
)
|
32287
32419
|
context[:gem_name] = 'aws-sdk-rds'
|
32288
|
-
context[:gem_version] = '1.
|
32420
|
+
context[:gem_version] = '1.285.0'
|
32289
32421
|
Seahorse::Client::Request.new(handlers, context)
|
32290
32422
|
end
|
32291
32423
|
|