aws-sdk-rds 1.238.0 → 1.240.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 +42 -23
- data/lib/aws-sdk-rds/db_cluster.rb +26 -14
- data/lib/aws-sdk-rds/db_instance.rb +24 -21
- data/lib/aws-sdk-rds/resource.rb +17 -15
- data/lib/aws-sdk-rds/types.rb +45 -30
- data/lib/aws-sdk-rds.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 856da7f57f346c76c041ab080a6002c1509c134433d817354724dafc4f61e12c
|
4
|
+
data.tar.gz: d02f711b4ac3eaa2dcc8d3021842678a3a6f84c43ebd0f1e690cbe1c4e4f1f3b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bd3ecc707078d2396de3138161ffdeb3818f3c1ded73f4b6c3dd20a09dfc6460ce67e0b200871e17276a43aad9a66acac9507af5a1cc1be5a94e57afdc489025
|
7
|
+
data.tar.gz: 3f4eb73f30f5d18d7636d485bf7fd1641ef7f9c1564a6f24c0d293149f0a32c325b1c32bddbed943f4eebc70095edae239a58b91734b61db5a1491f9968bd98a
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.240.0 (2024-07-18)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Updates Amazon RDS documentation to specify an eventual consistency model for DescribePendingMaintenanceActions.
|
8
|
+
|
9
|
+
1.239.0 (2024-07-12)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Update path for CreateDBCluster resource identifier, and Add v2 smoke tests and smithy smokeTests trait for SDK testing.
|
13
|
+
|
4
14
|
1.238.0 (2024-07-02)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.240.0
|
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -3180,13 +3180,14 @@ module Aws::RDS
|
|
3180
3180
|
# @option params [Boolean] :publicly_accessible
|
3181
3181
|
# Specifies whether the DB cluster is publicly accessible.
|
3182
3182
|
#
|
3183
|
-
# When the DB cluster is publicly accessible
|
3184
|
-
#
|
3185
|
-
#
|
3186
|
-
#
|
3187
|
-
#
|
3188
|
-
#
|
3189
|
-
#
|
3183
|
+
# When the DB cluster is publicly accessible and you connect from
|
3184
|
+
# outside of the DB cluster's virtual private cloud (VPC), its Domain
|
3185
|
+
# Name System (DNS) endpoint resolves to the public IP address. When you
|
3186
|
+
# connect from within the same VPC as the DB cluster, the endpoint
|
3187
|
+
# resolves to the private IP address. Access to the DB cluster is
|
3188
|
+
# ultimately controlled by the security group it uses. That public
|
3189
|
+
# access isn't permitted if the security group assigned to the DB
|
3190
|
+
# cluster doesn't permit it.
|
3190
3191
|
#
|
3191
3192
|
# When the DB cluster isn't publicly accessible, it is an internal DB
|
3192
3193
|
# cluster with a DNS name that resolves to a private IP address.
|
@@ -4965,13 +4966,14 @@ module Aws::RDS
|
|
4965
4966
|
# @option params [Boolean] :publicly_accessible
|
4966
4967
|
# Specifies whether the DB instance is publicly accessible.
|
4967
4968
|
#
|
4968
|
-
# When the DB instance is publicly accessible
|
4969
|
-
#
|
4970
|
-
#
|
4971
|
-
#
|
4972
|
-
#
|
4973
|
-
#
|
4974
|
-
#
|
4969
|
+
# When the DB instance is publicly accessible and you connect from
|
4970
|
+
# outside of the DB instance's virtual private cloud (VPC), its Domain
|
4971
|
+
# Name System (DNS) endpoint resolves to the public IP address. When you
|
4972
|
+
# connect from within the same VPC as the DB instance, the endpoint
|
4973
|
+
# resolves to the private IP address. Access to the DB instance is
|
4974
|
+
# ultimately controlled by the security group it uses. That public
|
4975
|
+
# access is not permitted if the security group assigned to the DB
|
4976
|
+
# instance doesn't permit it.
|
4975
4977
|
#
|
4976
4978
|
# When the DB instance isn't publicly accessible, it is an internal DB
|
4977
4979
|
# instance with a DNS name that resolves to a private IP address.
|
@@ -8901,6 +8903,16 @@ module Aws::RDS
|
|
8901
8903
|
# is to remove automated backups immediately after the DB cluster is
|
8902
8904
|
# deleted.
|
8903
8905
|
#
|
8906
|
+
# <note markdown="1"> You must delete automated backups for Amazon RDS Multi-AZ DB clusters.
|
8907
|
+
# For more information about managing automated backups for RDS Multi-AZ
|
8908
|
+
# DB clusters, see [Managing automated backups][1].
|
8909
|
+
#
|
8910
|
+
# </note>
|
8911
|
+
#
|
8912
|
+
#
|
8913
|
+
#
|
8914
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_ManagingAutomatedBackups.html
|
8915
|
+
#
|
8904
8916
|
# @return [Types::DeleteDBClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
8905
8917
|
#
|
8906
8918
|
# * {Types::DeleteDBClusterResult#db_cluster #db_cluster} => Types::DBCluster
|
@@ -11735,7 +11747,7 @@ module Aws::RDS
|
|
11735
11747
|
#
|
11736
11748
|
# Valid Values:
|
11737
11749
|
#
|
11738
|
-
# * `
|
11750
|
+
# * `user`
|
11739
11751
|
#
|
11740
11752
|
# * `engine`
|
11741
11753
|
#
|
@@ -16591,6 +16603,12 @@ module Aws::RDS
|
|
16591
16603
|
# Returns a list of resources (for example, DB instances) that have at
|
16592
16604
|
# least one pending maintenance action.
|
16593
16605
|
#
|
16606
|
+
# This API follows an eventual consistency model. This means that the
|
16607
|
+
# result of the `DescribePendingMaintenanceActions` command might not be
|
16608
|
+
# immediately visible to all subsequent RDS commands. Keep this in mind
|
16609
|
+
# when you use `DescribePendingMaintenanceActions` immediately after
|
16610
|
+
# using a previous API command such as `ApplyPendingMaintenanceActions`.
|
16611
|
+
#
|
16594
16612
|
# @option params [String] :resource_identifier
|
16595
16613
|
# The ARN of a resource to return pending maintenance actions for.
|
16596
16614
|
#
|
@@ -20511,13 +20529,14 @@ module Aws::RDS
|
|
20511
20529
|
# @option params [Boolean] :publicly_accessible
|
20512
20530
|
# Specifies whether the DB instance is publicly accessible.
|
20513
20531
|
#
|
20514
|
-
# When the DB
|
20515
|
-
#
|
20516
|
-
#
|
20517
|
-
#
|
20518
|
-
#
|
20519
|
-
#
|
20520
|
-
#
|
20532
|
+
# When the DB instance is publicly accessible and you connect from
|
20533
|
+
# outside of the DB instance's virtual private cloud (VPC), its Domain
|
20534
|
+
# Name System (DNS) endpoint resolves to the public IP address. When you
|
20535
|
+
# connect from within the same VPC as the DB instance, the endpoint
|
20536
|
+
# resolves to the private IP address. Access to the DB instance is
|
20537
|
+
# ultimately controlled by the security group it uses. That public
|
20538
|
+
# access isn't permitted if the security group assigned to the DB
|
20539
|
+
# instance doesn't permit it.
|
20521
20540
|
#
|
20522
20541
|
# When the DB instance isn't publicly accessible, it is an internal DB
|
20523
20542
|
# instance with a DNS name that resolves to a private IP address.
|
@@ -31262,7 +31281,7 @@ module Aws::RDS
|
|
31262
31281
|
params: params,
|
31263
31282
|
config: config)
|
31264
31283
|
context[:gem_name] = 'aws-sdk-rds'
|
31265
|
-
context[:gem_version] = '1.
|
31284
|
+
context[:gem_version] = '1.240.0'
|
31266
31285
|
Seahorse::Client::Request.new(handlers, context)
|
31267
31286
|
end
|
31268
31287
|
|
@@ -515,13 +515,14 @@ module Aws::RDS
|
|
515
515
|
|
516
516
|
# Indicates whether the DB cluster is publicly accessible.
|
517
517
|
#
|
518
|
-
# When the DB cluster is publicly accessible
|
519
|
-
#
|
520
|
-
#
|
521
|
-
#
|
522
|
-
#
|
523
|
-
#
|
524
|
-
#
|
518
|
+
# When the DB cluster is publicly accessible and you connect from
|
519
|
+
# outside of the DB cluster's virtual private cloud (VPC), its Domain
|
520
|
+
# Name System (DNS) endpoint resolves to the public IP address. When you
|
521
|
+
# connect from within the same VPC as the DB cluster, the endpoint
|
522
|
+
# resolves to the private IP address. Access to the DB cluster is
|
523
|
+
# ultimately controlled by the security group it uses. That public
|
524
|
+
# access isn't permitted if the security group assigned to the DB
|
525
|
+
# cluster doesn't permit it.
|
525
526
|
#
|
526
527
|
# When the DB cluster isn't publicly accessible, it is an internal DB
|
527
528
|
# cluster with a DNS name that resolves to a private IP address.
|
@@ -1510,13 +1511,14 @@ module Aws::RDS
|
|
1510
1511
|
# @option options [Boolean] :publicly_accessible
|
1511
1512
|
# Specifies whether the DB cluster is publicly accessible.
|
1512
1513
|
#
|
1513
|
-
# When the DB cluster is publicly accessible
|
1514
|
-
#
|
1515
|
-
#
|
1516
|
-
#
|
1517
|
-
#
|
1518
|
-
#
|
1519
|
-
#
|
1514
|
+
# When the DB cluster is publicly accessible and you connect from
|
1515
|
+
# outside of the DB cluster's virtual private cloud (VPC), its Domain
|
1516
|
+
# Name System (DNS) endpoint resolves to the public IP address. When you
|
1517
|
+
# connect from within the same VPC as the DB cluster, the endpoint
|
1518
|
+
# resolves to the private IP address. Access to the DB cluster is
|
1519
|
+
# ultimately controlled by the security group it uses. That public
|
1520
|
+
# access isn't permitted if the security group assigned to the DB
|
1521
|
+
# cluster doesn't permit it.
|
1520
1522
|
#
|
1521
1523
|
# When the DB cluster isn't publicly accessible, it is an internal DB
|
1522
1524
|
# cluster with a DNS name that resolves to a private IP address.
|
@@ -1852,6 +1854,16 @@ module Aws::RDS
|
|
1852
1854
|
# cluster is deleted. This parameter isn't case-sensitive. The default
|
1853
1855
|
# is to remove automated backups immediately after the DB cluster is
|
1854
1856
|
# deleted.
|
1857
|
+
#
|
1858
|
+
# <note markdown="1"> You must delete automated backups for Amazon RDS Multi-AZ DB clusters.
|
1859
|
+
# For more information about managing automated backups for RDS Multi-AZ
|
1860
|
+
# DB clusters, see [Managing automated backups][1].
|
1861
|
+
#
|
1862
|
+
# </note>
|
1863
|
+
#
|
1864
|
+
#
|
1865
|
+
#
|
1866
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_ManagingAutomatedBackups.html
|
1855
1867
|
# @return [DBCluster]
|
1856
1868
|
def delete(options = {})
|
1857
1869
|
options = options.merge(db_cluster_identifier: @id)
|
@@ -280,13 +280,14 @@ module Aws::RDS
|
|
280
280
|
|
281
281
|
# Indicates whether the DB instance is publicly accessible.
|
282
282
|
#
|
283
|
-
# When the DB
|
284
|
-
#
|
285
|
-
#
|
286
|
-
#
|
287
|
-
#
|
288
|
-
#
|
289
|
-
#
|
283
|
+
# When the DB instance is publicly accessible and you connect from
|
284
|
+
# outside of the DB instance's virtual private cloud (VPC), its Domain
|
285
|
+
# Name System (DNS) endpoint resolves to the public IP address. When you
|
286
|
+
# connect from within the same VPC as the DB instance, the endpoint
|
287
|
+
# resolves to the private IP address. Access to the DB cluster is
|
288
|
+
# ultimately controlled by the security group it uses. That public
|
289
|
+
# access isn't permitted if the security group assigned to the DB
|
290
|
+
# cluster doesn't permit it.
|
290
291
|
#
|
291
292
|
# When the DB instance isn't publicly accessible, it is an internal DB
|
292
293
|
# instance with a DNS name that resolves to a private IP address.
|
@@ -1688,13 +1689,14 @@ module Aws::RDS
|
|
1688
1689
|
# @option options [Boolean] :publicly_accessible
|
1689
1690
|
# Specifies whether the DB instance is publicly accessible.
|
1690
1691
|
#
|
1691
|
-
# When the DB instance is publicly accessible
|
1692
|
-
#
|
1693
|
-
#
|
1694
|
-
#
|
1695
|
-
#
|
1696
|
-
#
|
1697
|
-
#
|
1692
|
+
# When the DB instance is publicly accessible and you connect from
|
1693
|
+
# outside of the DB instance's virtual private cloud (VPC), its Domain
|
1694
|
+
# Name System (DNS) endpoint resolves to the public IP address. When you
|
1695
|
+
# connect from within the same VPC as the DB instance, the endpoint
|
1696
|
+
# resolves to the private IP address. Access to the DB instance is
|
1697
|
+
# ultimately controlled by the security group it uses. That public
|
1698
|
+
# access is not permitted if the security group assigned to the DB
|
1699
|
+
# instance doesn't permit it.
|
1698
1700
|
#
|
1699
1701
|
# When the DB instance isn't publicly accessible, it is an internal DB
|
1700
1702
|
# instance with a DNS name that resolves to a private IP address.
|
@@ -3675,13 +3677,14 @@ module Aws::RDS
|
|
3675
3677
|
# @option options [Boolean] :publicly_accessible
|
3676
3678
|
# Specifies whether the DB instance is publicly accessible.
|
3677
3679
|
#
|
3678
|
-
# When the DB
|
3679
|
-
#
|
3680
|
-
#
|
3681
|
-
#
|
3682
|
-
#
|
3683
|
-
#
|
3684
|
-
#
|
3680
|
+
# When the DB instance is publicly accessible and you connect from
|
3681
|
+
# outside of the DB instance's virtual private cloud (VPC), its Domain
|
3682
|
+
# Name System (DNS) endpoint resolves to the public IP address. When you
|
3683
|
+
# connect from within the same VPC as the DB instance, the endpoint
|
3684
|
+
# resolves to the private IP address. Access to the DB instance is
|
3685
|
+
# ultimately controlled by the security group it uses. That public
|
3686
|
+
# access isn't permitted if the security group assigned to the DB
|
3687
|
+
# instance doesn't permit it.
|
3685
3688
|
#
|
3686
3689
|
# When the DB instance isn't publicly accessible, it is an internal DB
|
3687
3690
|
# instance with a DNS name that resolves to a private IP address.
|
data/lib/aws-sdk-rds/resource.rb
CHANGED
@@ -704,13 +704,14 @@ module Aws::RDS
|
|
704
704
|
# @option options [Boolean] :publicly_accessible
|
705
705
|
# Specifies whether the DB cluster is publicly accessible.
|
706
706
|
#
|
707
|
-
# When the DB cluster is publicly accessible
|
708
|
-
#
|
709
|
-
#
|
710
|
-
#
|
711
|
-
#
|
712
|
-
#
|
713
|
-
#
|
707
|
+
# When the DB cluster is publicly accessible and you connect from
|
708
|
+
# outside of the DB cluster's virtual private cloud (VPC), its Domain
|
709
|
+
# Name System (DNS) endpoint resolves to the public IP address. When you
|
710
|
+
# connect from within the same VPC as the DB cluster, the endpoint
|
711
|
+
# resolves to the private IP address. Access to the DB cluster is
|
712
|
+
# ultimately controlled by the security group it uses. That public
|
713
|
+
# access isn't permitted if the security group assigned to the DB
|
714
|
+
# cluster doesn't permit it.
|
714
715
|
#
|
715
716
|
# When the DB cluster isn't publicly accessible, it is an internal DB
|
716
717
|
# cluster with a DNS name that resolves to a private IP address.
|
@@ -956,7 +957,7 @@ module Aws::RDS
|
|
956
957
|
@client.create_db_cluster(options)
|
957
958
|
end
|
958
959
|
DBCluster.new(
|
959
|
-
id:
|
960
|
+
id: resp.data.db_cluster.db_cluster_identifier,
|
960
961
|
data: resp.data.db_cluster,
|
961
962
|
client: @client
|
962
963
|
)
|
@@ -1823,13 +1824,14 @@ module Aws::RDS
|
|
1823
1824
|
# @option options [Boolean] :publicly_accessible
|
1824
1825
|
# Specifies whether the DB instance is publicly accessible.
|
1825
1826
|
#
|
1826
|
-
# When the DB instance is publicly accessible
|
1827
|
-
#
|
1828
|
-
#
|
1829
|
-
#
|
1830
|
-
#
|
1831
|
-
#
|
1832
|
-
#
|
1827
|
+
# When the DB instance is publicly accessible and you connect from
|
1828
|
+
# outside of the DB instance's virtual private cloud (VPC), its Domain
|
1829
|
+
# Name System (DNS) endpoint resolves to the public IP address. When you
|
1830
|
+
# connect from within the same VPC as the DB instance, the endpoint
|
1831
|
+
# resolves to the private IP address. Access to the DB instance is
|
1832
|
+
# ultimately controlled by the security group it uses. That public
|
1833
|
+
# access is not permitted if the security group assigned to the DB
|
1834
|
+
# instance doesn't permit it.
|
1833
1835
|
#
|
1834
1836
|
# When the DB instance isn't publicly accessible, it is an internal DB
|
1835
1837
|
# instance with a DNS name that resolves to a private IP address.
|
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -2723,13 +2723,14 @@ module Aws::RDS
|
|
2723
2723
|
# @!attribute [rw] publicly_accessible
|
2724
2724
|
# Specifies whether the DB cluster is publicly accessible.
|
2725
2725
|
#
|
2726
|
-
# When the DB cluster is publicly accessible
|
2727
|
-
#
|
2728
|
-
#
|
2729
|
-
#
|
2730
|
-
#
|
2731
|
-
#
|
2732
|
-
#
|
2726
|
+
# When the DB cluster is publicly accessible and you connect from
|
2727
|
+
# outside of the DB cluster's virtual private cloud (VPC), its Domain
|
2728
|
+
# Name System (DNS) endpoint resolves to the public IP address. When
|
2729
|
+
# you connect from within the same VPC as the DB cluster, the endpoint
|
2730
|
+
# resolves to the private IP address. Access to the DB cluster is
|
2731
|
+
# ultimately controlled by the security group it uses. That public
|
2732
|
+
# access isn't permitted if the security group assigned to the DB
|
2733
|
+
# cluster doesn't permit it.
|
2733
2734
|
#
|
2734
2735
|
# When the DB cluster isn't publicly accessible, it is an internal DB
|
2735
2736
|
# cluster with a DNS name that resolves to a private IP address.
|
@@ -4010,10 +4011,11 @@ module Aws::RDS
|
|
4010
4011
|
# @!attribute [rw] publicly_accessible
|
4011
4012
|
# Specifies whether the DB instance is publicly accessible.
|
4012
4013
|
#
|
4013
|
-
# When the DB instance is publicly accessible
|
4014
|
-
#
|
4015
|
-
#
|
4016
|
-
#
|
4014
|
+
# When the DB instance is publicly accessible and you connect from
|
4015
|
+
# outside of the DB instance's virtual private cloud (VPC), its
|
4016
|
+
# Domain Name System (DNS) endpoint resolves to the public IP address.
|
4017
|
+
# When you connect from within the same VPC as the DB instance, the
|
4018
|
+
# endpoint resolves to the private IP address. Access to the DB
|
4017
4019
|
# instance is ultimately controlled by the security group it uses.
|
4018
4020
|
# That public access is not permitted if the security group assigned
|
4019
4021
|
# to the DB instance doesn't permit it.
|
@@ -6958,13 +6960,14 @@ module Aws::RDS
|
|
6958
6960
|
# @!attribute [rw] publicly_accessible
|
6959
6961
|
# Indicates whether the DB cluster is publicly accessible.
|
6960
6962
|
#
|
6961
|
-
# When the DB cluster is publicly accessible
|
6962
|
-
#
|
6963
|
-
#
|
6964
|
-
#
|
6965
|
-
#
|
6966
|
-
#
|
6967
|
-
#
|
6963
|
+
# When the DB cluster is publicly accessible and you connect from
|
6964
|
+
# outside of the DB cluster's virtual private cloud (VPC), its Domain
|
6965
|
+
# Name System (DNS) endpoint resolves to the public IP address. When
|
6966
|
+
# you connect from within the same VPC as the DB cluster, the endpoint
|
6967
|
+
# resolves to the private IP address. Access to the DB cluster is
|
6968
|
+
# ultimately controlled by the security group it uses. That public
|
6969
|
+
# access isn't permitted if the security group assigned to the DB
|
6970
|
+
# cluster doesn't permit it.
|
6968
6971
|
#
|
6969
6972
|
# When the DB cluster isn't publicly accessible, it is an internal DB
|
6970
6973
|
# cluster with a DNS name that resolves to a private IP address.
|
@@ -8698,10 +8701,11 @@ module Aws::RDS
|
|
8698
8701
|
# @!attribute [rw] publicly_accessible
|
8699
8702
|
# Indicates whether the DB instance is publicly accessible.
|
8700
8703
|
#
|
8701
|
-
# When the DB
|
8702
|
-
#
|
8703
|
-
#
|
8704
|
-
#
|
8704
|
+
# When the DB instance is publicly accessible and you connect from
|
8705
|
+
# outside of the DB instance's virtual private cloud (VPC), its
|
8706
|
+
# Domain Name System (DNS) endpoint resolves to the public IP address.
|
8707
|
+
# When you connect from within the same VPC as the DB instance, the
|
8708
|
+
# endpoint resolves to the private IP address. Access to the DB
|
8705
8709
|
# cluster is ultimately controlled by the security group it uses. That
|
8706
8710
|
# public access isn't permitted if the security group assigned to the
|
8707
8711
|
# DB cluster doesn't permit it.
|
@@ -11268,6 +11272,16 @@ module Aws::RDS
|
|
11268
11272
|
# DB cluster is deleted. This parameter isn't case-sensitive. The
|
11269
11273
|
# default is to remove automated backups immediately after the DB
|
11270
11274
|
# cluster is deleted.
|
11275
|
+
#
|
11276
|
+
# <note markdown="1"> You must delete automated backups for Amazon RDS Multi-AZ DB
|
11277
|
+
# clusters. For more information about managing automated backups for
|
11278
|
+
# RDS Multi-AZ DB clusters, see [Managing automated backups][1].
|
11279
|
+
#
|
11280
|
+
# </note>
|
11281
|
+
#
|
11282
|
+
#
|
11283
|
+
#
|
11284
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_ManagingAutomatedBackups.html
|
11271
11285
|
# @return [Boolean]
|
11272
11286
|
#
|
11273
11287
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBClusterMessage AWS API Documentation
|
@@ -12231,7 +12245,7 @@ module Aws::RDS
|
|
12231
12245
|
#
|
12232
12246
|
# Valid Values:
|
12233
12247
|
#
|
12234
|
-
# * `
|
12248
|
+
# * `user`
|
12235
12249
|
#
|
12236
12250
|
# * `engine`
|
12237
12251
|
#
|
@@ -18599,13 +18613,14 @@ module Aws::RDS
|
|
18599
18613
|
# @!attribute [rw] publicly_accessible
|
18600
18614
|
# Specifies whether the DB instance is publicly accessible.
|
18601
18615
|
#
|
18602
|
-
# When the DB
|
18603
|
-
#
|
18604
|
-
#
|
18605
|
-
#
|
18606
|
-
#
|
18607
|
-
#
|
18608
|
-
#
|
18616
|
+
# When the DB instance is publicly accessible and you connect from
|
18617
|
+
# outside of the DB instance's virtual private cloud (VPC), its
|
18618
|
+
# Domain Name System (DNS) endpoint resolves to the public IP address.
|
18619
|
+
# When you connect from within the same VPC as the DB instance, the
|
18620
|
+
# endpoint resolves to the private IP address. Access to the DB
|
18621
|
+
# instance is ultimately controlled by the security group it uses.
|
18622
|
+
# That public access isn't permitted if the security group assigned
|
18623
|
+
# to the DB instance doesn't permit it.
|
18609
18624
|
#
|
18610
18625
|
# When the DB instance isn't publicly accessible, it is an internal
|
18611
18626
|
# DB instance with a DNS name that resolves to a private IP address.
|
data/lib/aws-sdk-rds.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-rds
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.240.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: 2024-07-
|
11
|
+
date: 2024-07-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|