aws-sdk-rds 1.209.0 → 1.211.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +445 -13
- data/lib/aws-sdk-rds/client_api.rb +213 -0
- data/lib/aws-sdk-rds/db_cluster.rb +31 -18
- data/lib/aws-sdk-rds/endpoints.rb +56 -0
- data/lib/aws-sdk-rds/errors.rb +11 -0
- data/lib/aws-sdk-rds/plugins/endpoints.rb +8 -0
- data/lib/aws-sdk-rds/resource.rb +12 -6
- data/lib/aws-sdk-rds/types.rb +857 -18
- data/lib/aws-sdk-rds.rb +1 -1
- metadata +2 -2
data/lib/aws-sdk-rds/resource.rb
CHANGED
@@ -533,16 +533,22 @@ module Aws::RDS
|
|
533
533
|
#
|
534
534
|
# Valid for Cluster Type: Aurora DB clusters only
|
535
535
|
# @option options [Boolean] :enable_http_endpoint
|
536
|
-
# Specifies whether to enable the HTTP endpoint for
|
537
|
-
#
|
536
|
+
# Specifies whether to enable the HTTP endpoint for the DB cluster. By
|
537
|
+
# default, the HTTP endpoint isn't enabled.
|
538
538
|
#
|
539
539
|
# When enabled, the HTTP endpoint provides a connectionless web service
|
540
|
-
# API for running SQL queries on the
|
541
|
-
#
|
540
|
+
# API (RDS Data API) for running SQL queries on the DB cluster. You can
|
541
|
+
# also query your database from inside the RDS console with the RDS
|
542
542
|
# query editor.
|
543
543
|
#
|
544
|
-
#
|
545
|
-
#
|
544
|
+
# RDS Data API is supported with the following DB clusters:
|
545
|
+
#
|
546
|
+
# * Aurora PostgreSQL Serverless v2 and provisioned
|
547
|
+
#
|
548
|
+
# * Aurora PostgreSQL and Aurora MySQL Serverless v1
|
549
|
+
#
|
550
|
+
# For more information, see [Using RDS Data API][1] in the *Amazon
|
551
|
+
# Aurora User Guide*.
|
546
552
|
#
|
547
553
|
# Valid for Cluster Type: Aurora DB clusters only
|
548
554
|
#
|