aws-sdk-rds 1.265.0 → 1.271.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 +30 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +104 -89
- data/lib/aws-sdk-rds/db_cluster.rb +26 -14
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +3 -2
- data/lib/aws-sdk-rds/db_instance.rb +7 -10
- data/lib/aws-sdk-rds/endpoint_provider.rb +14 -18
- data/lib/aws-sdk-rds/resource.rb +7 -8
- data/lib/aws-sdk-rds/types.rb +59 -37
- data/lib/aws-sdk-rds.rb +1 -1
- data/sig/client.rbs +2 -0
- data/sig/resource.rbs +2 -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: ddb9f32cb66c752c216f4993d2ee74fcb91c629acee02ee0769208c3d529bda3
|
4
|
+
data.tar.gz: c51d34139ebbd7408bf0e7d53819ddecf42632e354df34ced9f4c1dea692753e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 12fc13320b17027c0850d17701fce019ce25dfa15ceb4fac86b85ef1f90ac2d5407c03b5d4fd6fb035847cd1f6f08bd915becf1ac72c31c10997bd658bff05af
|
7
|
+
data.tar.gz: 585ff7f73c8690b04e216c0c80b81f5af5c504d59ef840f29fb13ac52420e2daf2358b1a9645dd7c47e18949c6aac465472462c23e85ed05e6556f83697475f8
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,36 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.271.0 (2025-02-20)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - CloudWatch Database Insights now supports Amazon RDS.
|
8
|
+
|
9
|
+
1.270.0 (2025-02-18)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.269.0 (2025-02-06)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
19
|
+
1.268.0 (2025-02-05)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Documentation updates to clarify the description for the parameter AllocatedStorage for the DB cluster data type, the description for the parameter DeleteAutomatedBackups for the DeleteDBCluster API operation, and removing an outdated note for the CreateDBParameterGroup API operation.
|
23
|
+
|
24
|
+
1.267.0 (2025-01-31)
|
25
|
+
------------------
|
26
|
+
|
27
|
+
* Feature - Updates to Aurora MySQL and Aurora PostgreSQL API pages with instance log type in the create and modify DB Cluster.
|
28
|
+
|
29
|
+
1.266.0 (2025-01-15)
|
30
|
+
------------------
|
31
|
+
|
32
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
33
|
+
|
4
34
|
1.265.0 (2025-01-08)
|
5
35
|
------------------
|
6
36
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.271.0
|
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -7,35 +7,35 @@
|
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
10
|
-
require 'seahorse/client/plugins/content_length
|
11
|
-
require 'aws-sdk-core/plugins/credentials_configuration
|
12
|
-
require 'aws-sdk-core/plugins/logging
|
13
|
-
require 'aws-sdk-core/plugins/param_converter
|
14
|
-
require 'aws-sdk-core/plugins/param_validator
|
15
|
-
require 'aws-sdk-core/plugins/user_agent
|
16
|
-
require 'aws-sdk-core/plugins/helpful_socket_errors
|
17
|
-
require 'aws-sdk-core/plugins/retry_errors
|
18
|
-
require 'aws-sdk-core/plugins/global_configuration
|
19
|
-
require 'aws-sdk-core/plugins/regional_endpoint
|
20
|
-
require 'aws-sdk-core/plugins/endpoint_discovery
|
21
|
-
require 'aws-sdk-core/plugins/endpoint_pattern
|
22
|
-
require 'aws-sdk-core/plugins/response_paging
|
23
|
-
require 'aws-sdk-core/plugins/stub_responses
|
24
|
-
require 'aws-sdk-core/plugins/idempotency_token
|
25
|
-
require 'aws-sdk-core/plugins/invocation_id
|
26
|
-
require 'aws-sdk-core/plugins/jsonvalue_converter
|
27
|
-
require 'aws-sdk-core/plugins/client_metrics_plugin
|
28
|
-
require 'aws-sdk-core/plugins/client_metrics_send_plugin
|
29
|
-
require 'aws-sdk-core/plugins/transfer_encoding
|
30
|
-
require 'aws-sdk-core/plugins/http_checksum
|
31
|
-
require 'aws-sdk-core/plugins/checksum_algorithm
|
32
|
-
require 'aws-sdk-core/plugins/request_compression
|
33
|
-
require 'aws-sdk-core/plugins/defaults_mode
|
34
|
-
require 'aws-sdk-core/plugins/recursion_detection
|
35
|
-
require 'aws-sdk-core/plugins/telemetry
|
36
|
-
require 'aws-sdk-core/plugins/sign
|
37
|
-
require 'aws-sdk-core/plugins/protocols/query
|
38
|
-
require 'aws-sdk-rds/plugins/cross_region_copying
|
10
|
+
require 'seahorse/client/plugins/content_length'
|
11
|
+
require 'aws-sdk-core/plugins/credentials_configuration'
|
12
|
+
require 'aws-sdk-core/plugins/logging'
|
13
|
+
require 'aws-sdk-core/plugins/param_converter'
|
14
|
+
require 'aws-sdk-core/plugins/param_validator'
|
15
|
+
require 'aws-sdk-core/plugins/user_agent'
|
16
|
+
require 'aws-sdk-core/plugins/helpful_socket_errors'
|
17
|
+
require 'aws-sdk-core/plugins/retry_errors'
|
18
|
+
require 'aws-sdk-core/plugins/global_configuration'
|
19
|
+
require 'aws-sdk-core/plugins/regional_endpoint'
|
20
|
+
require 'aws-sdk-core/plugins/endpoint_discovery'
|
21
|
+
require 'aws-sdk-core/plugins/endpoint_pattern'
|
22
|
+
require 'aws-sdk-core/plugins/response_paging'
|
23
|
+
require 'aws-sdk-core/plugins/stub_responses'
|
24
|
+
require 'aws-sdk-core/plugins/idempotency_token'
|
25
|
+
require 'aws-sdk-core/plugins/invocation_id'
|
26
|
+
require 'aws-sdk-core/plugins/jsonvalue_converter'
|
27
|
+
require 'aws-sdk-core/plugins/client_metrics_plugin'
|
28
|
+
require 'aws-sdk-core/plugins/client_metrics_send_plugin'
|
29
|
+
require 'aws-sdk-core/plugins/transfer_encoding'
|
30
|
+
require 'aws-sdk-core/plugins/http_checksum'
|
31
|
+
require 'aws-sdk-core/plugins/checksum_algorithm'
|
32
|
+
require 'aws-sdk-core/plugins/request_compression'
|
33
|
+
require 'aws-sdk-core/plugins/defaults_mode'
|
34
|
+
require 'aws-sdk-core/plugins/recursion_detection'
|
35
|
+
require 'aws-sdk-core/plugins/telemetry'
|
36
|
+
require 'aws-sdk-core/plugins/sign'
|
37
|
+
require 'aws-sdk-core/plugins/protocols/query'
|
38
|
+
require 'aws-sdk-rds/plugins/cross_region_copying'
|
39
39
|
|
40
40
|
module Aws::RDS
|
41
41
|
# An API client for RDS. To construct a client, you need to configure a `:region` and `:credentials`.
|
@@ -259,11 +259,34 @@ module Aws::RDS
|
|
259
259
|
# Used when loading credentials from the shared credentials file
|
260
260
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
261
261
|
#
|
262
|
+
# @option options [String] :request_checksum_calculation ("when_supported")
|
263
|
+
# Determines when a checksum will be calculated for request payloads. Values are:
|
264
|
+
#
|
265
|
+
# * `when_supported` - (default) When set, a checksum will be
|
266
|
+
# calculated for all request payloads of operations modeled with the
|
267
|
+
# `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
|
268
|
+
# `requestAlgorithmMember` is modeled.
|
269
|
+
# * `when_required` - When set, a checksum will only be calculated for
|
270
|
+
# request payloads of operations modeled with the `httpChecksum` trait where
|
271
|
+
# `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
|
272
|
+
# is modeled and supplied.
|
273
|
+
#
|
262
274
|
# @option options [Integer] :request_min_compression_size_bytes (10240)
|
263
275
|
# The minimum size in bytes that triggers compression for request
|
264
276
|
# bodies. The value must be non-negative integer value between 0
|
265
277
|
# and 10485780 bytes inclusive.
|
266
278
|
#
|
279
|
+
# @option options [String] :response_checksum_validation ("when_supported")
|
280
|
+
# Determines when checksum validation will be performed on response payloads. Values are:
|
281
|
+
#
|
282
|
+
# * `when_supported` - (default) When set, checksum validation is performed on all
|
283
|
+
# response payloads of operations modeled with the `httpChecksum` trait where
|
284
|
+
# `responseAlgorithms` is modeled, except when no modeled checksum algorithms
|
285
|
+
# are supported.
|
286
|
+
# * `when_required` - When set, checksum validation is not performed on
|
287
|
+
# response payloads of operations unless the checksum algorithm is supported and
|
288
|
+
# the `requestValidationModeMember` member is set to `ENABLED`.
|
289
|
+
#
|
267
290
|
# @option options [Proc] :retry_backoff
|
268
291
|
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
269
292
|
# This option is only used in the `legacy` retry mode.
|
@@ -3062,9 +3085,9 @@ module Aws::RDS
|
|
3062
3085
|
#
|
3063
3086
|
# The following values are valid for each DB engine:
|
3064
3087
|
#
|
3065
|
-
# * Aurora MySQL - `audit | error | general | slowquery`
|
3088
|
+
# * Aurora MySQL - `audit | error | general | instance | slowquery`
|
3066
3089
|
#
|
3067
|
-
# * Aurora PostgreSQL - `postgresql`
|
3090
|
+
# * Aurora PostgreSQL - `instance | postgresql`
|
3068
3091
|
#
|
3069
3092
|
# * RDS for MySQL - `error | general | slowquery`
|
3070
3093
|
#
|
@@ -3357,7 +3380,7 @@ module Aws::RDS
|
|
3357
3380
|
# `PerformanceInsightsEnabled` parameter to `true` and the
|
3358
3381
|
# `PerformanceInsightsRetentionPeriod` parameter to 465.
|
3359
3382
|
#
|
3360
|
-
# Valid for Cluster Type: Aurora DB clusters
|
3383
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
3361
3384
|
#
|
3362
3385
|
# @option params [Boolean] :enable_performance_insights
|
3363
3386
|
# Specifies whether to turn on Performance Insights for the DB cluster.
|
@@ -5361,10 +5384,8 @@ module Aws::RDS
|
|
5361
5384
|
# @option params [String] :database_insights_mode
|
5362
5385
|
# The mode of Database Insights to enable for the DB instance.
|
5363
5386
|
#
|
5364
|
-
#
|
5365
|
-
#
|
5366
|
-
# <note markdown="1"> Currently, this value is inherited from the DB cluster and can't be
|
5367
|
-
# changed.
|
5387
|
+
# <note markdown="1"> Aurora DB instances inherit this value from the DB cluster, so you
|
5388
|
+
# can't change this value.
|
5368
5389
|
#
|
5369
5390
|
# </note>
|
5370
5391
|
#
|
@@ -5563,7 +5584,8 @@ module Aws::RDS
|
|
5563
5584
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
5564
5585
|
#
|
5565
5586
|
# @option params [Integer] :storage_throughput
|
5566
|
-
# The storage throughput value for the
|
5587
|
+
# The storage throughput value, in mebibyte per second (MiBps), for the
|
5588
|
+
# DB instance.
|
5567
5589
|
#
|
5568
5590
|
# This setting applies only to the `gp3` storage type.
|
5569
5591
|
#
|
@@ -6436,7 +6458,7 @@ module Aws::RDS
|
|
6436
6458
|
# @option params [String] :database_insights_mode
|
6437
6459
|
# The mode of Database Insights to enable for the read replica.
|
6438
6460
|
#
|
6439
|
-
# <note markdown="1">
|
6461
|
+
# <note markdown="1"> This setting isn't supported.
|
6440
6462
|
#
|
6441
6463
|
# </note>
|
6442
6464
|
#
|
@@ -7027,22 +7049,6 @@ module Aws::RDS
|
|
7027
7049
|
#
|
7028
7050
|
# This command doesn't apply to RDS Custom.
|
7029
7051
|
#
|
7030
|
-
# After you create a DB parameter group, you should wait at least 5
|
7031
|
-
# minutes before creating your first DB instance that uses that DB
|
7032
|
-
# parameter group as the default parameter group. This allows Amazon RDS
|
7033
|
-
# to fully complete the create action before the parameter group is used
|
7034
|
-
# as the default for a new DB instance. This is especially important for
|
7035
|
-
# parameters that are critical when creating the default database for a
|
7036
|
-
# DB instance, such as the character set for the default database
|
7037
|
-
# defined by the `character_set_database` parameter. You can use the
|
7038
|
-
# *Parameter Groups* option of the [Amazon RDS console][1] or the
|
7039
|
-
# *DescribeDBParameters* command to verify that your DB parameter group
|
7040
|
-
# has been created or modified.
|
7041
|
-
#
|
7042
|
-
#
|
7043
|
-
#
|
7044
|
-
# [1]: https://console.aws.amazon.com/rds/
|
7045
|
-
#
|
7046
7052
|
# @option params [required, String] :db_parameter_group_name
|
7047
7053
|
# The name of the DB parameter group.
|
7048
7054
|
#
|
@@ -8343,13 +8349,13 @@ module Aws::RDS
|
|
8343
8349
|
# @option params [String] :data_filter
|
8344
8350
|
# Data filtering options for the integration. For more information, see
|
8345
8351
|
# [Data filtering for Aurora zero-ETL integrations with Amazon
|
8346
|
-
# Redshift][1]
|
8347
|
-
#
|
8348
|
-
# Valid for: Integrations with Aurora MySQL source DB clusters only
|
8352
|
+
# Redshift][1] or [Data filtering for Amazon RDS zero-ETL integrations
|
8353
|
+
# with Amazon Redshift][2].
|
8349
8354
|
#
|
8350
8355
|
#
|
8351
8356
|
#
|
8352
8357
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/zero-etl.filtering.html
|
8358
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/zero-etl.filtering.html
|
8353
8359
|
#
|
8354
8360
|
# @option params [String] :description
|
8355
8361
|
# A description of the integration.
|
@@ -9133,7 +9139,8 @@ module Aws::RDS
|
|
9133
9139
|
# Specifies whether to remove automated backups immediately after the DB
|
9134
9140
|
# cluster is deleted. This parameter isn't case-sensitive. The default
|
9135
9141
|
# is to remove automated backups immediately after the DB cluster is
|
9136
|
-
# deleted
|
9142
|
+
# deleted, unless the Amazon Web Services Backup policy specifies a
|
9143
|
+
# point-in-time restore rule.
|
9137
9144
|
#
|
9138
9145
|
# @return [Types::DeleteDBClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
9139
9146
|
#
|
@@ -18997,9 +19004,9 @@ module Aws::RDS
|
|
18997
19004
|
#
|
18998
19005
|
# The following values are valid for each DB engine:
|
18999
19006
|
#
|
19000
|
-
# * Aurora MySQL - `audit | error | general | slowquery`
|
19007
|
+
# * Aurora MySQL - `audit | error | general | instance | slowquery`
|
19001
19008
|
#
|
19002
|
-
# * Aurora PostgreSQL - `postgresql`
|
19009
|
+
# * Aurora PostgreSQL - `instance | postgresql`
|
19003
19010
|
#
|
19004
19011
|
# * RDS for MySQL - `error | general | slowquery`
|
19005
19012
|
#
|
@@ -19290,7 +19297,7 @@ module Aws::RDS
|
|
19290
19297
|
# If you change the value from `advanced` to `standard`, you must set
|
19291
19298
|
# the `PerformanceInsightsEnabled` parameter to `false`.
|
19292
19299
|
#
|
19293
|
-
# Valid for Cluster Type: Aurora DB clusters
|
19300
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
19294
19301
|
#
|
19295
19302
|
# @option params [Boolean] :enable_performance_insights
|
19296
19303
|
# Specifies whether to turn on Performance Insights for the DB cluster.
|
@@ -20906,10 +20913,8 @@ module Aws::RDS
|
|
20906
20913
|
# @option params [String] :database_insights_mode
|
20907
20914
|
# Specifies the mode of Database Insights to enable for the DB instance.
|
20908
20915
|
#
|
20909
|
-
#
|
20910
|
-
#
|
20911
|
-
# <note markdown="1"> Currently, this value is inherited from the DB cluster and can't be
|
20912
|
-
# changed.
|
20916
|
+
# <note markdown="1"> Aurora DB instances inherit this value from the DB cluster, so you
|
20917
|
+
# can't change this value.
|
20913
20918
|
#
|
20914
20919
|
# </note>
|
20915
20920
|
#
|
@@ -21890,6 +21895,8 @@ module Aws::RDS
|
|
21890
21895
|
# hyphens; it can't end with a hyphen or contain two consecutive
|
21891
21896
|
# hyphens.
|
21892
21897
|
#
|
21898
|
+
# You can't rename the `default` target group.
|
21899
|
+
#
|
21893
21900
|
# @return [Types::ModifyDBProxyTargetGroupResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
21894
21901
|
#
|
21895
21902
|
# * {Types::ModifyDBProxyTargetGroupResponse#db_proxy_target_group #db_proxy_target_group} => Types::DBProxyTargetGroup
|
@@ -22815,12 +22822,6 @@ module Aws::RDS
|
|
22815
22822
|
|
22816
22823
|
# Modifies a zero-ETL integration with Amazon Redshift.
|
22817
22824
|
#
|
22818
|
-
# <note markdown="1"> Currently, you can only modify integrations that have Aurora MySQL
|
22819
|
-
# source DB clusters. Integrations with Aurora PostgreSQL and RDS
|
22820
|
-
# sources currently don't support modifying the integration.
|
22821
|
-
#
|
22822
|
-
# </note>
|
22823
|
-
#
|
22824
22825
|
# @option params [required, String] :integration_identifier
|
22825
22826
|
# The unique identifier of the integration to modify.
|
22826
22827
|
#
|
@@ -22829,11 +22830,14 @@ module Aws::RDS
|
|
22829
22830
|
#
|
22830
22831
|
# @option params [String] :data_filter
|
22831
22832
|
# A new data filter for the integration. For more information, see [Data
|
22832
|
-
# filtering for Aurora zero-ETL integrations with Amazon Redshift][1]
|
22833
|
+
# filtering for Aurora zero-ETL integrations with Amazon Redshift][1] or
|
22834
|
+
# [Data filtering for Amazon RDS zero-ETL integrations with Amazon
|
22835
|
+
# Redshift][2].
|
22833
22836
|
#
|
22834
22837
|
#
|
22835
22838
|
#
|
22836
22839
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Zero_ETL_Filtering.html
|
22840
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/zero-etl.filtering.html
|
22837
22841
|
#
|
22838
22842
|
# @option params [String] :description
|
22839
22843
|
# A new description for the integration.
|
@@ -25048,15 +25052,25 @@ module Aws::RDS
|
|
25048
25052
|
#
|
25049
25053
|
# **Aurora MySQL**
|
25050
25054
|
#
|
25051
|
-
# Possible values are `audit`, `error`, `general`, and
|
25055
|
+
# Possible values are `audit`, `error`, `general`, `instance`, and
|
25056
|
+
# `slowquery`.
|
25057
|
+
#
|
25058
|
+
# **Aurora PostgreSQL**
|
25059
|
+
#
|
25060
|
+
# Possible value are `instance` and `postgresql`.
|
25061
|
+
#
|
25062
|
+
# For more information about exporting CloudWatch Logs for Amazon RDS,
|
25063
|
+
# see [Publishing Database Logs to Amazon CloudWatch Logs][1] in the
|
25064
|
+
# *Amazon RDS User Guide*.
|
25052
25065
|
#
|
25053
25066
|
# For more information about exporting CloudWatch Logs for Amazon
|
25054
|
-
# Aurora, see [Publishing Database Logs to Amazon CloudWatch Logs][
|
25067
|
+
# Aurora, see [Publishing Database Logs to Amazon CloudWatch Logs][2] in
|
25055
25068
|
# the *Amazon Aurora User Guide*.
|
25056
25069
|
#
|
25057
25070
|
#
|
25058
25071
|
#
|
25059
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/
|
25072
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
25073
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
25060
25074
|
#
|
25061
25075
|
# @option params [Boolean] :deletion_protection
|
25062
25076
|
# Specifies whether to enable deletion protection for the DB cluster.
|
@@ -25722,11 +25736,12 @@ module Aws::RDS
|
|
25722
25736
|
#
|
25723
25737
|
# **Aurora MySQL**
|
25724
25738
|
#
|
25725
|
-
# Possible values are `audit`, `error`, `general`, and
|
25739
|
+
# Possible values are `audit`, `error`, `general`, `instance`, and
|
25740
|
+
# `slowquery`.
|
25726
25741
|
#
|
25727
25742
|
# **Aurora PostgreSQL**
|
25728
25743
|
#
|
25729
|
-
# Possible value
|
25744
|
+
# Possible value are `instance` and `postgresql`.
|
25730
25745
|
#
|
25731
25746
|
# For more information about exporting CloudWatch Logs for Amazon RDS,
|
25732
25747
|
# see [Publishing Database Logs to Amazon CloudWatch Logs][1] in the
|
@@ -26520,11 +26535,12 @@ module Aws::RDS
|
|
26520
26535
|
#
|
26521
26536
|
# **Aurora MySQL**
|
26522
26537
|
#
|
26523
|
-
# Possible values are `audit`, `error`, `general`, and
|
26538
|
+
# Possible values are `audit`, `error`, `general`, `instance`, and
|
26539
|
+
# `slowquery`.
|
26524
26540
|
#
|
26525
26541
|
# **Aurora PostgreSQL**
|
26526
26542
|
#
|
26527
|
-
# Possible value
|
26543
|
+
# Possible value are `instance` and `postgresql`.
|
26528
26544
|
#
|
26529
26545
|
# For more information about exporting CloudWatch Logs for Amazon RDS,
|
26530
26546
|
# see [Publishing Database Logs to Amazon CloudWatch Logs][1] in the
|
@@ -28355,10 +28371,8 @@ module Aws::RDS
|
|
28355
28371
|
# @option params [String] :database_insights_mode
|
28356
28372
|
# Specifies the mode of Database Insights to enable for the DB instance.
|
28357
28373
|
#
|
28358
|
-
#
|
28359
|
-
#
|
28360
|
-
# <note markdown="1"> Currently, this value is inherited from the DB cluster and can't be
|
28361
|
-
# changed.
|
28374
|
+
# <note markdown="1"> Aurora DB instances inherit this value from the DB cluster, so you
|
28375
|
+
# can't change this value.
|
28362
28376
|
#
|
28363
28377
|
# </note>
|
28364
28378
|
#
|
@@ -31020,11 +31034,12 @@ module Aws::RDS
|
|
31020
31034
|
req.send_request(options)
|
31021
31035
|
end
|
31022
31036
|
|
31023
|
-
# Stops an Amazon RDS DB instance. When you stop a DB
|
31024
|
-
# RDS retains the DB instance's metadata, including
|
31025
|
-
# parameter group, and option group membership. Amazon
|
31026
|
-
# the transaction logs so you can do a point-in-time
|
31027
|
-
# necessary.
|
31037
|
+
# Stops an Amazon RDS DB instance temporarily. When you stop a DB
|
31038
|
+
# instance, Amazon RDS retains the DB instance's metadata, including
|
31039
|
+
# its endpoint, DB parameter group, and option group membership. Amazon
|
31040
|
+
# RDS also retains the transaction logs so you can do a point-in-time
|
31041
|
+
# restore if necessary. The instance restarts automatically after 7
|
31042
|
+
# days.
|
31028
31043
|
#
|
31029
31044
|
# For more information, see [ Stopping an Amazon RDS DB Instance
|
31030
31045
|
# Temporarily][1] in the *Amazon RDS User Guide.*
|
@@ -31871,7 +31886,7 @@ module Aws::RDS
|
|
31871
31886
|
tracer: tracer
|
31872
31887
|
)
|
31873
31888
|
context[:gem_name] = 'aws-sdk-rds'
|
31874
|
-
context[:gem_version] = '1.
|
31889
|
+
context[:gem_version] = '1.271.0'
|
31875
31890
|
Seahorse::Client::Request.new(handlers, context)
|
31876
31891
|
end
|
31877
31892
|
|
@@ -35,10 +35,9 @@ module Aws::RDS
|
|
35
35
|
end
|
36
36
|
alias :db_cluster_identifier :id
|
37
37
|
|
38
|
-
#
|
39
|
-
#
|
40
|
-
#
|
41
|
-
# size isn't fixed, but instead automatically adjusts as needed.
|
38
|
+
# `AllocatedStorage` specifies the allocated storage size in gibibytes
|
39
|
+
# (GiB). For Aurora, `AllocatedStorage` can vary because Aurora DB
|
40
|
+
# cluster storage size adjusts as needed.
|
42
41
|
# @return [Integer]
|
43
42
|
def allocated_storage
|
44
43
|
data[:allocated_storage]
|
@@ -281,7 +280,18 @@ module Aws::RDS
|
|
281
280
|
data[:iam_database_authentication_enabled]
|
282
281
|
end
|
283
282
|
|
284
|
-
# The ID of the clone group with which the DB cluster is associated.
|
283
|
+
# The ID of the clone group with which the DB cluster is associated. For
|
284
|
+
# newly created clusters, the ID is typically null.
|
285
|
+
#
|
286
|
+
# If you clone a DB cluster when the ID is null, the operation populates
|
287
|
+
# the ID value for the source cluster and the clone because both
|
288
|
+
# clusters become part of the same clone group. Even if you delete the
|
289
|
+
# clone cluster, the clone group ID remains for the lifetime of the
|
290
|
+
# source cluster to show that it was used in a cloning operation.
|
291
|
+
#
|
292
|
+
# For PITR, the clone group ID is inherited from the source cluster. For
|
293
|
+
# snapshot restore operations, the clone group ID isn't inherited from
|
294
|
+
# the source cluster.
|
285
295
|
# @return [String]
|
286
296
|
def clone_group_id
|
287
297
|
data[:clone_group_id]
|
@@ -1328,9 +1338,9 @@ module Aws::RDS
|
|
1328
1338
|
#
|
1329
1339
|
# The following values are valid for each DB engine:
|
1330
1340
|
#
|
1331
|
-
# * Aurora MySQL - `audit | error | general | slowquery`
|
1341
|
+
# * Aurora MySQL - `audit | error | general | instance | slowquery`
|
1332
1342
|
#
|
1333
|
-
# * Aurora PostgreSQL - `postgresql`
|
1343
|
+
# * Aurora PostgreSQL - `instance | postgresql`
|
1334
1344
|
#
|
1335
1345
|
# * RDS for MySQL - `error | general | slowquery`
|
1336
1346
|
#
|
@@ -1604,7 +1614,7 @@ module Aws::RDS
|
|
1604
1614
|
# `PerformanceInsightsEnabled` parameter to `true` and the
|
1605
1615
|
# `PerformanceInsightsRetentionPeriod` parameter to 465.
|
1606
1616
|
#
|
1607
|
-
# Valid for Cluster Type: Aurora DB clusters
|
1617
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
1608
1618
|
# @option options [Boolean] :enable_performance_insights
|
1609
1619
|
# Specifies whether to turn on Performance Insights for the DB cluster.
|
1610
1620
|
#
|
@@ -1895,7 +1905,8 @@ module Aws::RDS
|
|
1895
1905
|
# Specifies whether to remove automated backups immediately after the DB
|
1896
1906
|
# cluster is deleted. This parameter isn't case-sensitive. The default
|
1897
1907
|
# is to remove automated backups immediately after the DB cluster is
|
1898
|
-
# deleted
|
1908
|
+
# deleted, unless the Amazon Web Services Backup policy specifies a
|
1909
|
+
# point-in-time restore rule.
|
1899
1910
|
# @return [DBCluster]
|
1900
1911
|
def delete(options = {})
|
1901
1912
|
options = options.merge(db_cluster_identifier: @id)
|
@@ -2164,9 +2175,9 @@ module Aws::RDS
|
|
2164
2175
|
#
|
2165
2176
|
# The following values are valid for each DB engine:
|
2166
2177
|
#
|
2167
|
-
# * Aurora MySQL - `audit | error | general | slowquery`
|
2178
|
+
# * Aurora MySQL - `audit | error | general | instance | slowquery`
|
2168
2179
|
#
|
2169
|
-
# * Aurora PostgreSQL - `postgresql`
|
2180
|
+
# * Aurora PostgreSQL - `instance | postgresql`
|
2170
2181
|
#
|
2171
2182
|
# * RDS for MySQL - `error | general | slowquery`
|
2172
2183
|
#
|
@@ -2439,7 +2450,7 @@ module Aws::RDS
|
|
2439
2450
|
# If you change the value from `advanced` to `standard`, you must set
|
2440
2451
|
# the `PerformanceInsightsEnabled` parameter to `false`.
|
2441
2452
|
#
|
2442
|
-
# Valid for Cluster Type: Aurora DB clusters
|
2453
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
2443
2454
|
# @option options [Boolean] :enable_performance_insights
|
2444
2455
|
# Specifies whether to turn on Performance Insights for the DB cluster.
|
2445
2456
|
#
|
@@ -2896,11 +2907,12 @@ module Aws::RDS
|
|
2896
2907
|
#
|
2897
2908
|
# **Aurora MySQL**
|
2898
2909
|
#
|
2899
|
-
# Possible values are `audit`, `error`, `general`, and
|
2910
|
+
# Possible values are `audit`, `error`, `general`, `instance`, and
|
2911
|
+
# `slowquery`.
|
2900
2912
|
#
|
2901
2913
|
# **Aurora PostgreSQL**
|
2902
2914
|
#
|
2903
|
-
# Possible value
|
2915
|
+
# Possible value are `instance` and `postgresql`.
|
2904
2916
|
#
|
2905
2917
|
# For more information about exporting CloudWatch Logs for Amazon RDS,
|
2906
2918
|
# see [Publishing Database Logs to Amazon CloudWatch Logs][1] in the
|
@@ -794,11 +794,12 @@ module Aws::RDS
|
|
794
794
|
#
|
795
795
|
# **Aurora MySQL**
|
796
796
|
#
|
797
|
-
# Possible values are `audit`, `error`, `general`, and
|
797
|
+
# Possible values are `audit`, `error`, `general`, `instance`, and
|
798
|
+
# `slowquery`.
|
798
799
|
#
|
799
800
|
# **Aurora PostgreSQL**
|
800
801
|
#
|
801
|
-
# Possible value
|
802
|
+
# Possible value are `instance` and `postgresql`.
|
802
803
|
#
|
803
804
|
# For more information about exporting CloudWatch Logs for Amazon RDS,
|
804
805
|
# see [Publishing Database Logs to Amazon CloudWatch Logs][1] in the
|
@@ -1945,10 +1945,8 @@ module Aws::RDS
|
|
1945
1945
|
# @option options [String] :database_insights_mode
|
1946
1946
|
# The mode of Database Insights to enable for the DB instance.
|
1947
1947
|
#
|
1948
|
-
#
|
1949
|
-
#
|
1950
|
-
# <note markdown="1"> Currently, this value is inherited from the DB cluster and can't be
|
1951
|
-
# changed.
|
1948
|
+
# <note markdown="1"> Aurora DB instances inherit this value from the DB cluster, so you
|
1949
|
+
# can't change this value.
|
1952
1950
|
#
|
1953
1951
|
# </note>
|
1954
1952
|
# @option options [Boolean] :enable_performance_insights
|
@@ -2135,7 +2133,8 @@ module Aws::RDS
|
|
2135
2133
|
#
|
2136
2134
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
2137
2135
|
# @option options [Integer] :storage_throughput
|
2138
|
-
# The storage throughput value for the
|
2136
|
+
# The storage throughput value, in mebibyte per second (MiBps), for the
|
2137
|
+
# DB instance.
|
2139
2138
|
#
|
2140
2139
|
# This setting applies only to the `gp3` storage type.
|
2141
2140
|
#
|
@@ -2625,7 +2624,7 @@ module Aws::RDS
|
|
2625
2624
|
# @option options [String] :database_insights_mode
|
2626
2625
|
# The mode of Database Insights to enable for the read replica.
|
2627
2626
|
#
|
2628
|
-
# <note markdown="1">
|
2627
|
+
# <note markdown="1"> This setting isn't supported.
|
2629
2628
|
#
|
2630
2629
|
# </note>
|
2631
2630
|
# @option options [Boolean] :enable_performance_insights
|
@@ -3803,10 +3802,8 @@ module Aws::RDS
|
|
3803
3802
|
# @option options [String] :database_insights_mode
|
3804
3803
|
# Specifies the mode of Database Insights to enable for the DB instance.
|
3805
3804
|
#
|
3806
|
-
#
|
3807
|
-
#
|
3808
|
-
# <note markdown="1"> Currently, this value is inherited from the DB cluster and can't be
|
3809
|
-
# changed.
|
3805
|
+
# <note markdown="1"> Aurora DB instances inherit this value from the DB cluster, so you
|
3806
|
+
# can't change this value.
|
3810
3807
|
#
|
3811
3808
|
# </note>
|
3812
3809
|
# @option options [Boolean] :enable_performance_insights
|
@@ -10,43 +10,39 @@
|
|
10
10
|
module Aws::RDS
|
11
11
|
class EndpointProvider
|
12
12
|
def resolve_endpoint(parameters)
|
13
|
-
|
14
|
-
|
15
|
-
use_fips = parameters.use_fips
|
16
|
-
endpoint = parameters.endpoint
|
17
|
-
if Aws::Endpoints::Matchers.set?(endpoint)
|
18
|
-
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
13
|
+
if Aws::Endpoints::Matchers.set?(parameters.endpoint)
|
14
|
+
if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true)
|
19
15
|
raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
|
20
16
|
end
|
21
|
-
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
17
|
+
if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
|
22
18
|
raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
|
23
19
|
end
|
24
|
-
return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
|
20
|
+
return Aws::Endpoints::Endpoint.new(url: parameters.endpoint, headers: {}, properties: {})
|
25
21
|
end
|
26
|
-
if Aws::Endpoints::Matchers.set?(region)
|
27
|
-
if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
|
28
|
-
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
22
|
+
if Aws::Endpoints::Matchers.set?(parameters.region)
|
23
|
+
if (partition_result = Aws::Endpoints::Matchers.aws_partition(parameters.region))
|
24
|
+
if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
|
29
25
|
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
30
|
-
return Aws::Endpoints::Endpoint.new(url: "https://rds-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
26
|
+
return Aws::Endpoints::Endpoint.new(url: "https://rds-fips.#{parameters.region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
31
27
|
end
|
32
28
|
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
33
29
|
end
|
34
|
-
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
30
|
+
if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true)
|
35
31
|
if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
|
36
32
|
if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-us-gov")
|
37
|
-
return Aws::Endpoints::Endpoint.new(url: "https://rds.#{region}.amazonaws.com", headers: {}, properties: {})
|
33
|
+
return Aws::Endpoints::Endpoint.new(url: "https://rds.#{parameters.region}.amazonaws.com", headers: {}, properties: {})
|
38
34
|
end
|
39
|
-
return Aws::Endpoints::Endpoint.new(url: "https://rds-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
35
|
+
return Aws::Endpoints::Endpoint.new(url: "https://rds-fips.#{parameters.region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
40
36
|
end
|
41
37
|
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
42
38
|
end
|
43
|
-
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
39
|
+
if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
|
44
40
|
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
45
|
-
return Aws::Endpoints::Endpoint.new(url: "https://rds.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
41
|
+
return Aws::Endpoints::Endpoint.new(url: "https://rds.#{parameters.region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
46
42
|
end
|
47
43
|
raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
|
48
44
|
end
|
49
|
-
return Aws::Endpoints::Endpoint.new(url: "https://rds.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
45
|
+
return Aws::Endpoints::Endpoint.new(url: "https://rds.#{parameters.region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
50
46
|
end
|
51
47
|
end
|
52
48
|
raise ArgumentError, "Invalid Configuration: Missing Region"
|
data/lib/aws-sdk-rds/resource.rb
CHANGED
@@ -502,9 +502,9 @@ module Aws::RDS
|
|
502
502
|
#
|
503
503
|
# The following values are valid for each DB engine:
|
504
504
|
#
|
505
|
-
# * Aurora MySQL - `audit | error | general | slowquery`
|
505
|
+
# * Aurora MySQL - `audit | error | general | instance | slowquery`
|
506
506
|
#
|
507
|
-
# * Aurora PostgreSQL - `postgresql`
|
507
|
+
# * Aurora PostgreSQL - `instance | postgresql`
|
508
508
|
#
|
509
509
|
# * RDS for MySQL - `error | general | slowquery`
|
510
510
|
#
|
@@ -778,7 +778,7 @@ module Aws::RDS
|
|
778
778
|
# `PerformanceInsightsEnabled` parameter to `true` and the
|
779
779
|
# `PerformanceInsightsRetentionPeriod` parameter to 465.
|
780
780
|
#
|
781
|
-
# Valid for Cluster Type: Aurora DB clusters
|
781
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
782
782
|
# @option options [Boolean] :enable_performance_insights
|
783
783
|
# Specifies whether to turn on Performance Insights for the DB cluster.
|
784
784
|
#
|
@@ -2093,10 +2093,8 @@ module Aws::RDS
|
|
2093
2093
|
# @option options [String] :database_insights_mode
|
2094
2094
|
# The mode of Database Insights to enable for the DB instance.
|
2095
2095
|
#
|
2096
|
-
#
|
2097
|
-
#
|
2098
|
-
# <note markdown="1"> Currently, this value is inherited from the DB cluster and can't be
|
2099
|
-
# changed.
|
2096
|
+
# <note markdown="1"> Aurora DB instances inherit this value from the DB cluster, so you
|
2097
|
+
# can't change this value.
|
2100
2098
|
#
|
2101
2099
|
# </note>
|
2102
2100
|
# @option options [Boolean] :enable_performance_insights
|
@@ -2283,7 +2281,8 @@ module Aws::RDS
|
|
2283
2281
|
#
|
2284
2282
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
2285
2283
|
# @option options [Integer] :storage_throughput
|
2286
|
-
# The storage throughput value for the
|
2284
|
+
# The storage throughput value, in mebibyte per second (MiBps), for the
|
2285
|
+
# DB instance.
|
2287
2286
|
#
|
2288
2287
|
# This setting applies only to the `gp3` storage type.
|
2289
2288
|
#
|
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -2593,9 +2593,9 @@ module Aws::RDS
|
|
2593
2593
|
#
|
2594
2594
|
# The following values are valid for each DB engine:
|
2595
2595
|
#
|
2596
|
-
# * Aurora MySQL - `audit | error | general | slowquery`
|
2596
|
+
# * Aurora MySQL - `audit | error | general | instance | slowquery`
|
2597
2597
|
#
|
2598
|
-
# * Aurora PostgreSQL - `postgresql`
|
2598
|
+
# * Aurora PostgreSQL - `instance | postgresql`
|
2599
2599
|
#
|
2600
2600
|
# * RDS for MySQL - `error | general | slowquery`
|
2601
2601
|
#
|
@@ -2907,7 +2907,7 @@ module Aws::RDS
|
|
2907
2907
|
# `PerformanceInsightsEnabled` parameter to `true` and the
|
2908
2908
|
# `PerformanceInsightsRetentionPeriod` parameter to 465.
|
2909
2909
|
#
|
2910
|
-
# Valid for Cluster Type: Aurora DB clusters
|
2910
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
2911
2911
|
# @return [String]
|
2912
2912
|
#
|
2913
2913
|
# @!attribute [rw] enable_performance_insights
|
@@ -4431,10 +4431,8 @@ module Aws::RDS
|
|
4431
4431
|
# @!attribute [rw] database_insights_mode
|
4432
4432
|
# The mode of Database Insights to enable for the DB instance.
|
4433
4433
|
#
|
4434
|
-
#
|
4435
|
-
#
|
4436
|
-
# <note markdown="1"> Currently, this value is inherited from the DB cluster and can't be
|
4437
|
-
# changed.
|
4434
|
+
# <note markdown="1"> Aurora DB instances inherit this value from the DB cluster, so you
|
4435
|
+
# can't change this value.
|
4438
4436
|
#
|
4439
4437
|
# </note>
|
4440
4438
|
# @return [String]
|
@@ -4647,7 +4645,8 @@ module Aws::RDS
|
|
4647
4645
|
# @return [String]
|
4648
4646
|
#
|
4649
4647
|
# @!attribute [rw] storage_throughput
|
4650
|
-
# The storage throughput value
|
4648
|
+
# The storage throughput value, in mebibyte per second (MiBps), for
|
4649
|
+
# the DB instance.
|
4651
4650
|
#
|
4652
4651
|
# This setting applies only to the `gp3` storage type.
|
4653
4652
|
#
|
@@ -5237,7 +5236,7 @@ module Aws::RDS
|
|
5237
5236
|
# @!attribute [rw] database_insights_mode
|
5238
5237
|
# The mode of Database Insights to enable for the read replica.
|
5239
5238
|
#
|
5240
|
-
# <note markdown="1">
|
5239
|
+
# <note markdown="1"> This setting isn't supported.
|
5241
5240
|
#
|
5242
5241
|
# </note>
|
5243
5242
|
# @return [String]
|
@@ -6533,13 +6532,13 @@ module Aws::RDS
|
|
6533
6532
|
# @!attribute [rw] data_filter
|
6534
6533
|
# Data filtering options for the integration. For more information,
|
6535
6534
|
# see [Data filtering for Aurora zero-ETL integrations with Amazon
|
6536
|
-
# Redshift][1]
|
6537
|
-
#
|
6538
|
-
# Valid for: Integrations with Aurora MySQL source DB clusters only
|
6535
|
+
# Redshift][1] or [Data filtering for Amazon RDS zero-ETL integrations
|
6536
|
+
# with Amazon Redshift][2].
|
6539
6537
|
#
|
6540
6538
|
#
|
6541
6539
|
#
|
6542
6540
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/zero-etl.filtering.html
|
6541
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/zero-etl.filtering.html
|
6543
6542
|
# @return [String]
|
6544
6543
|
#
|
6545
6544
|
# @!attribute [rw] description
|
@@ -6802,11 +6801,9 @@ module Aws::RDS
|
|
6802
6801
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html
|
6803
6802
|
#
|
6804
6803
|
# @!attribute [rw] allocated_storage
|
6805
|
-
#
|
6806
|
-
#
|
6807
|
-
#
|
6808
|
-
# storage size isn't fixed, but instead automatically adjusts as
|
6809
|
-
# needed.
|
6804
|
+
# `AllocatedStorage` specifies the allocated storage size in gibibytes
|
6805
|
+
# (GiB). For Aurora, `AllocatedStorage` can vary because Aurora DB
|
6806
|
+
# cluster storage size adjusts as needed.
|
6810
6807
|
# @return [Integer]
|
6811
6808
|
#
|
6812
6809
|
# @!attribute [rw] availability_zones
|
@@ -6988,6 +6985,18 @@ module Aws::RDS
|
|
6988
6985
|
#
|
6989
6986
|
# @!attribute [rw] clone_group_id
|
6990
6987
|
# The ID of the clone group with which the DB cluster is associated.
|
6988
|
+
# For newly created clusters, the ID is typically null.
|
6989
|
+
#
|
6990
|
+
# If you clone a DB cluster when the ID is null, the operation
|
6991
|
+
# populates the ID value for the source cluster and the clone because
|
6992
|
+
# both clusters become part of the same clone group. Even if you
|
6993
|
+
# delete the clone cluster, the clone group ID remains for the
|
6994
|
+
# lifetime of the source cluster to show that it was used in a cloning
|
6995
|
+
# operation.
|
6996
|
+
#
|
6997
|
+
# For PITR, the clone group ID is inherited from the source cluster.
|
6998
|
+
# For snapshot restore operations, the clone group ID isn't inherited
|
6999
|
+
# from the source cluster.
|
6991
7000
|
# @return [String]
|
6992
7001
|
#
|
6993
7002
|
# @!attribute [rw] cluster_create_time
|
@@ -11586,7 +11595,8 @@ module Aws::RDS
|
|
11586
11595
|
# Specifies whether to remove automated backups immediately after the
|
11587
11596
|
# DB cluster is deleted. This parameter isn't case-sensitive. The
|
11588
11597
|
# default is to remove automated backups immediately after the DB
|
11589
|
-
# cluster is deleted
|
11598
|
+
# cluster is deleted, unless the Amazon Web Services Backup policy
|
11599
|
+
# specifies a point-in-time restore rule.
|
11590
11600
|
# @return [Boolean]
|
11591
11601
|
#
|
11592
11602
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBClusterMessage AWS API Documentation
|
@@ -17512,9 +17522,9 @@ module Aws::RDS
|
|
17512
17522
|
#
|
17513
17523
|
# The following values are valid for each DB engine:
|
17514
17524
|
#
|
17515
|
-
# * Aurora MySQL - `audit | error | general | slowquery`
|
17525
|
+
# * Aurora MySQL - `audit | error | general | instance | slowquery`
|
17516
17526
|
#
|
17517
|
-
# * Aurora PostgreSQL - `postgresql`
|
17527
|
+
# * Aurora PostgreSQL - `instance | postgresql`
|
17518
17528
|
#
|
17519
17529
|
# * RDS for MySQL - `error | general | slowquery`
|
17520
17530
|
#
|
@@ -17825,7 +17835,7 @@ module Aws::RDS
|
|
17825
17835
|
# If you change the value from `advanced` to `standard`, you must set
|
17826
17836
|
# the `PerformanceInsightsEnabled` parameter to `false`.
|
17827
17837
|
#
|
17828
|
-
# Valid for Cluster Type: Aurora DB clusters
|
17838
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
17829
17839
|
# @return [String]
|
17830
17840
|
#
|
17831
17841
|
# @!attribute [rw] enable_performance_insights
|
@@ -19056,10 +19066,8 @@ module Aws::RDS
|
|
19056
19066
|
# Specifies the mode of Database Insights to enable for the DB
|
19057
19067
|
# instance.
|
19058
19068
|
#
|
19059
|
-
#
|
19060
|
-
#
|
19061
|
-
# <note markdown="1"> Currently, this value is inherited from the DB cluster and can't be
|
19062
|
-
# changed.
|
19069
|
+
# <note markdown="1"> Aurora DB instances inherit this value from the DB cluster, so you
|
19070
|
+
# can't change this value.
|
19063
19071
|
#
|
19064
19072
|
# </note>
|
19065
19073
|
# @return [String]
|
@@ -19742,6 +19750,8 @@ module Aws::RDS
|
|
19742
19750
|
# begin with a letter and must contain only ASCII letters, digits, and
|
19743
19751
|
# hyphens; it can't end with a hyphen or contain two consecutive
|
19744
19752
|
# hyphens.
|
19753
|
+
#
|
19754
|
+
# You can't rename the `default` target group.
|
19745
19755
|
# @return [String]
|
19746
19756
|
#
|
19747
19757
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBProxyTargetGroupRequest AWS API Documentation
|
@@ -20193,11 +20203,13 @@ module Aws::RDS
|
|
20193
20203
|
# @!attribute [rw] data_filter
|
20194
20204
|
# A new data filter for the integration. For more information, see
|
20195
20205
|
# [Data filtering for Aurora zero-ETL integrations with Amazon
|
20196
|
-
# Redshift][1]
|
20206
|
+
# Redshift][1] or [Data filtering for Amazon RDS zero-ETL integrations
|
20207
|
+
# with Amazon Redshift][2].
|
20197
20208
|
#
|
20198
20209
|
#
|
20199
20210
|
#
|
20200
20211
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Zero_ETL_Filtering.html
|
20212
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/zero-etl.filtering.html
|
20201
20213
|
# @return [String]
|
20202
20214
|
#
|
20203
20215
|
# @!attribute [rw] description
|
@@ -22991,15 +23003,25 @@ module Aws::RDS
|
|
22991
23003
|
#
|
22992
23004
|
# **Aurora MySQL**
|
22993
23005
|
#
|
22994
|
-
# Possible values are `audit`, `error`, `general`, and
|
23006
|
+
# Possible values are `audit`, `error`, `general`, `instance`, and
|
23007
|
+
# `slowquery`.
|
23008
|
+
#
|
23009
|
+
# **Aurora PostgreSQL**
|
23010
|
+
#
|
23011
|
+
# Possible value are `instance` and `postgresql`.
|
23012
|
+
#
|
23013
|
+
# For more information about exporting CloudWatch Logs for Amazon RDS,
|
23014
|
+
# see [Publishing Database Logs to Amazon CloudWatch Logs][1] in the
|
23015
|
+
# *Amazon RDS User Guide*.
|
22995
23016
|
#
|
22996
23017
|
# For more information about exporting CloudWatch Logs for Amazon
|
22997
|
-
# Aurora, see [Publishing Database Logs to Amazon CloudWatch Logs][
|
23018
|
+
# Aurora, see [Publishing Database Logs to Amazon CloudWatch Logs][2]
|
22998
23019
|
# in the *Amazon Aurora User Guide*.
|
22999
23020
|
#
|
23000
23021
|
#
|
23001
23022
|
#
|
23002
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/
|
23023
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
23024
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
23003
23025
|
# @return [Array<String>]
|
23004
23026
|
#
|
23005
23027
|
# @!attribute [rw] deletion_protection
|
@@ -23475,11 +23497,12 @@ module Aws::RDS
|
|
23475
23497
|
#
|
23476
23498
|
# **Aurora MySQL**
|
23477
23499
|
#
|
23478
|
-
# Possible values are `audit`, `error`, `general`, and
|
23500
|
+
# Possible values are `audit`, `error`, `general`, `instance`, and
|
23501
|
+
# `slowquery`.
|
23479
23502
|
#
|
23480
23503
|
# **Aurora PostgreSQL**
|
23481
23504
|
#
|
23482
|
-
# Possible value
|
23505
|
+
# Possible value are `instance` and `postgresql`.
|
23483
23506
|
#
|
23484
23507
|
# For more information about exporting CloudWatch Logs for Amazon RDS,
|
23485
23508
|
# see [Publishing Database Logs to Amazon CloudWatch Logs][1] in the
|
@@ -24082,11 +24105,12 @@ module Aws::RDS
|
|
24082
24105
|
#
|
24083
24106
|
# **Aurora MySQL**
|
24084
24107
|
#
|
24085
|
-
# Possible values are `audit`, `error`, `general`, and
|
24108
|
+
# Possible values are `audit`, `error`, `general`, `instance`, and
|
24109
|
+
# `slowquery`.
|
24086
24110
|
#
|
24087
24111
|
# **Aurora PostgreSQL**
|
24088
24112
|
#
|
24089
|
-
# Possible value
|
24113
|
+
# Possible value are `instance` and `postgresql`.
|
24090
24114
|
#
|
24091
24115
|
# For more information about exporting CloudWatch Logs for Amazon RDS,
|
24092
24116
|
# see [Publishing Database Logs to Amazon CloudWatch Logs][1] in the
|
@@ -25580,10 +25604,8 @@ module Aws::RDS
|
|
25580
25604
|
# Specifies the mode of Database Insights to enable for the DB
|
25581
25605
|
# instance.
|
25582
25606
|
#
|
25583
|
-
#
|
25584
|
-
#
|
25585
|
-
# <note markdown="1"> Currently, this value is inherited from the DB cluster and can't be
|
25586
|
-
# changed.
|
25607
|
+
# <note markdown="1"> Aurora DB instances inherit this value from the DB cluster, so you
|
25608
|
+
# can't change this value.
|
25587
25609
|
#
|
25588
25610
|
# </note>
|
25589
25611
|
# @return [String]
|
data/lib/aws-sdk-rds.rb
CHANGED
@@ -80,7 +80,7 @@ module Aws::RDS
|
|
80
80
|
autoload :ReservedDBInstancesOffering, 'aws-sdk-rds/reserved_db_instances_offering'
|
81
81
|
autoload :ResourcePendingMaintenanceActionList, 'aws-sdk-rds/resource_pending_maintenance_action_list'
|
82
82
|
|
83
|
-
GEM_VERSION = '1.
|
83
|
+
GEM_VERSION = '1.271.0'
|
84
84
|
|
85
85
|
end
|
86
86
|
|
data/sig/client.rbs
CHANGED
@@ -39,7 +39,9 @@ module Aws
|
|
39
39
|
?logger: untyped,
|
40
40
|
?max_attempts: Integer,
|
41
41
|
?profile: String,
|
42
|
+
?request_checksum_calculation: String,
|
42
43
|
?request_min_compression_size_bytes: Integer,
|
44
|
+
?response_checksum_validation: String,
|
43
45
|
?retry_backoff: Proc,
|
44
46
|
?retry_base_delay: Float,
|
45
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
data/sig/resource.rbs
CHANGED
@@ -39,7 +39,9 @@ module Aws
|
|
39
39
|
?logger: untyped,
|
40
40
|
?max_attempts: Integer,
|
41
41
|
?profile: String,
|
42
|
+
?request_checksum_calculation: String,
|
42
43
|
?request_min_compression_size_bytes: Integer,
|
44
|
+
?response_checksum_validation: String,
|
43
45
|
?retry_backoff: Proc,
|
44
46
|
?retry_base_delay: Float,
|
45
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
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.271.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: 2025-
|
11
|
+
date: 2025-02-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.216.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.216.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|