aws-sdk-rds 1.294.0 → 1.295.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +30 -48
- data/lib/aws-sdk-rds/db_cluster.rb +15 -24
- data/lib/aws-sdk-rds/db_instance.rb +14 -23
- data/lib/aws-sdk-rds/endpoint_parameters.rb +4 -4
- data/lib/aws-sdk-rds/resource.rb +28 -46
- data/lib/aws-sdk-rds/types.rb +28 -46
- data/lib/aws-sdk-rds.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 375c70dbbd8458d6a61f6788112c192ed1b017e726769d0680844213f4b94f7e
|
4
|
+
data.tar.gz: 19b56df7db18cd513b7f59c5a78fc98692b36a77a3f071b3b5453b9389cc6b92
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3012cb140d84aefc6c6091e93404c7239b89d8bf1627de69d68a527160fbf3d386b0174eb7419bc38c1527107e1637e6bd01b6025bb57c84bb3815a6e6c1993d
|
7
|
+
data.tar.gz: 1110146d9939ba1aaffeff6c3bc2cb40776e136303a084529a006d87a114e52c2085844bffe5b7a7cb1eab50cb71f2c46c02bb8a40b9a4b8e77e6cc6cb53c563
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.295.0 (2025-10-06)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Documentation updates to the CreateDBClusterMessage$PubliclyAccessible and CreateDBInstanceMessage$PubliclyAccessible properties.
|
8
|
+
|
4
9
|
1.294.0 (2025-09-30)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.295.0
|
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -3261,40 +3261,31 @@ module Aws::RDS
|
|
3261
3261
|
# @option params [Boolean] :publicly_accessible
|
3262
3262
|
# Specifies whether the DB cluster is publicly accessible.
|
3263
3263
|
#
|
3264
|
+
# Valid for Cluster Type: Multi-AZ DB clusters only
|
3265
|
+
#
|
3264
3266
|
# When the DB cluster is publicly accessible and you connect from
|
3265
|
-
# outside of the DB cluster's virtual private cloud (VPC), its
|
3266
|
-
#
|
3267
|
+
# outside of the DB cluster's virtual private cloud (VPC), its domain
|
3268
|
+
# name system (DNS) endpoint resolves to the public IP address. When you
|
3267
3269
|
# connect from within the same VPC as the DB cluster, the endpoint
|
3268
3270
|
# resolves to the private IP address. Access to the DB cluster is
|
3269
|
-
#
|
3270
|
-
# access isn't permitted if the security group assigned to the DB
|
3271
|
-
# cluster doesn't permit it.
|
3271
|
+
# controlled by its security group settings.
|
3272
3272
|
#
|
3273
3273
|
# When the DB cluster isn't publicly accessible, it is an internal DB
|
3274
3274
|
# cluster with a DNS name that resolves to a private IP address.
|
3275
3275
|
#
|
3276
|
-
#
|
3277
|
-
#
|
3278
|
-
# Default: The default behavior varies depending on whether
|
3279
|
-
# `DBSubnetGroupName` is specified.
|
3280
|
-
#
|
3281
|
-
# If `DBSubnetGroupName` isn't specified, and `PubliclyAccessible`
|
3282
|
-
# isn't specified, the following applies:
|
3283
|
-
#
|
3284
|
-
# * If the default VPC in the target Region doesn’t have an internet
|
3285
|
-
# gateway attached to it, the DB cluster is private.
|
3276
|
+
# The default behavior when `PubliclyAccessible` is not specified
|
3277
|
+
# depends on whether a `DBSubnetGroup` is specified.
|
3286
3278
|
#
|
3287
|
-
#
|
3288
|
-
#
|
3279
|
+
# If `DBSubnetGroup` isn't specified, `PubliclyAccessible` defaults to
|
3280
|
+
# `true`.
|
3289
3281
|
#
|
3290
|
-
# If `
|
3291
|
-
#
|
3282
|
+
# If `DBSubnetGroup` is specified, `PubliclyAccessible` defaults to
|
3283
|
+
# `false` unless the value of `DBSubnetGroup` is `default`, in which
|
3284
|
+
# case `PubliclyAccessible` defaults to `true`.
|
3292
3285
|
#
|
3293
|
-
#
|
3294
|
-
#
|
3295
|
-
#
|
3296
|
-
# * If the subnets are part of a VPC that has an internet gateway
|
3297
|
-
# attached to it, the DB cluster is public.
|
3286
|
+
# If `PubliclyAccessible` is true and the VPC that the `DBSubnetGroup`
|
3287
|
+
# is in doesn't have an internet gateway attached to it, Amazon RDS
|
3288
|
+
# returns an error.
|
3298
3289
|
#
|
3299
3290
|
# @option params [Boolean] :auto_minor_version_upgrade
|
3300
3291
|
# Specifies whether minor engine upgrades are applied automatically to
|
@@ -5197,37 +5188,28 @@ module Aws::RDS
|
|
5197
5188
|
# Specifies whether the DB instance is publicly accessible.
|
5198
5189
|
#
|
5199
5190
|
# When the DB instance is publicly accessible and you connect from
|
5200
|
-
# outside of the DB instance's virtual private cloud (VPC), its
|
5201
|
-
#
|
5191
|
+
# outside of the DB instance's virtual private cloud (VPC), its domain
|
5192
|
+
# name system (DNS) endpoint resolves to the public IP address. When you
|
5202
5193
|
# connect from within the same VPC as the DB instance, the endpoint
|
5203
5194
|
# resolves to the private IP address. Access to the DB instance is
|
5204
|
-
#
|
5205
|
-
# access is not permitted if the security group assigned to the DB
|
5206
|
-
# instance doesn't permit it.
|
5195
|
+
# controlled by its security group settings.
|
5207
5196
|
#
|
5208
5197
|
# When the DB instance isn't publicly accessible, it is an internal DB
|
5209
5198
|
# instance with a DNS name that resolves to a private IP address.
|
5210
5199
|
#
|
5211
|
-
#
|
5212
|
-
# `
|
5200
|
+
# The default behavior when `PubliclyAccessible` is not specified
|
5201
|
+
# depends on whether a `DBSubnetGroup` is specified.
|
5213
5202
|
#
|
5214
|
-
# If `
|
5215
|
-
#
|
5203
|
+
# If `DBSubnetGroup` isn't specified, `PubliclyAccessible` defaults to
|
5204
|
+
# `false` for Aurora instances and `true` for non-Aurora instances.
|
5216
5205
|
#
|
5217
|
-
#
|
5218
|
-
#
|
5206
|
+
# If `DBSubnetGroup` is specified, `PubliclyAccessible` defaults to
|
5207
|
+
# `false` unless the value of `DBSubnetGroup` is `default`, in which
|
5208
|
+
# case `PubliclyAccessible` defaults to `true`.
|
5219
5209
|
#
|
5220
|
-
#
|
5221
|
-
#
|
5222
|
-
#
|
5223
|
-
# If `DBSubnetGroupName` is specified, and `PubliclyAccessible` isn't
|
5224
|
-
# specified, the following applies:
|
5225
|
-
#
|
5226
|
-
# * If the subnets are part of a VPC that doesn’t have an internet
|
5227
|
-
# gateway attached to it, the DB instance is private.
|
5228
|
-
#
|
5229
|
-
# * If the subnets are part of a VPC that has an internet gateway
|
5230
|
-
# attached to it, the DB instance is public.
|
5210
|
+
# If `PubliclyAccessible` is true and the VPC that the `DBSubnetGroup`
|
5211
|
+
# is in doesn't have an internet gateway attached to it, Amazon RDS
|
5212
|
+
# returns an error.
|
5231
5213
|
#
|
5232
5214
|
# @option params [Array<Types::Tag>] :tags
|
5233
5215
|
# Tags to assign to the DB instance.
|
@@ -21186,7 +21168,7 @@ module Aws::RDS
|
|
21186
21168
|
#
|
21187
21169
|
# * Must be in the distinguished name format.
|
21188
21170
|
#
|
21189
|
-
#
|
21171
|
+
# ^
|
21190
21172
|
#
|
21191
21173
|
# Example:
|
21192
21174
|
# `OU=mymanagedADtestOU,DC=mymanagedADtest,DC=mymanagedAD,DC=mydomain`
|
@@ -32614,7 +32596,7 @@ module Aws::RDS
|
|
32614
32596
|
tracer: tracer
|
32615
32597
|
)
|
32616
32598
|
context[:gem_name] = 'aws-sdk-rds'
|
32617
|
-
context[:gem_version] = '1.
|
32599
|
+
context[:gem_version] = '1.295.0'
|
32618
32600
|
Seahorse::Client::Request.new(handlers, context)
|
32619
32601
|
end
|
32620
32602
|
|
@@ -1512,40 +1512,31 @@ module Aws::RDS
|
|
1512
1512
|
# @option options [Boolean] :publicly_accessible
|
1513
1513
|
# Specifies whether the DB cluster is publicly accessible.
|
1514
1514
|
#
|
1515
|
+
# Valid for Cluster Type: Multi-AZ DB clusters only
|
1516
|
+
#
|
1515
1517
|
# When the DB cluster is publicly accessible and you connect from
|
1516
|
-
# outside of the DB cluster's virtual private cloud (VPC), its
|
1517
|
-
#
|
1518
|
+
# outside of the DB cluster's virtual private cloud (VPC), its domain
|
1519
|
+
# name system (DNS) endpoint resolves to the public IP address. When you
|
1518
1520
|
# connect from within the same VPC as the DB cluster, the endpoint
|
1519
1521
|
# resolves to the private IP address. Access to the DB cluster is
|
1520
|
-
#
|
1521
|
-
# access isn't permitted if the security group assigned to the DB
|
1522
|
-
# cluster doesn't permit it.
|
1522
|
+
# controlled by its security group settings.
|
1523
1523
|
#
|
1524
1524
|
# When the DB cluster isn't publicly accessible, it is an internal DB
|
1525
1525
|
# cluster with a DNS name that resolves to a private IP address.
|
1526
1526
|
#
|
1527
|
-
#
|
1527
|
+
# The default behavior when `PubliclyAccessible` is not specified
|
1528
|
+
# depends on whether a `DBSubnetGroup` is specified.
|
1528
1529
|
#
|
1529
|
-
#
|
1530
|
-
# `
|
1530
|
+
# If `DBSubnetGroup` isn't specified, `PubliclyAccessible` defaults to
|
1531
|
+
# `true`.
|
1531
1532
|
#
|
1532
|
-
# If `
|
1533
|
-
#
|
1533
|
+
# If `DBSubnetGroup` is specified, `PubliclyAccessible` defaults to
|
1534
|
+
# `false` unless the value of `DBSubnetGroup` is `default`, in which
|
1535
|
+
# case `PubliclyAccessible` defaults to `true`.
|
1534
1536
|
#
|
1535
|
-
#
|
1536
|
-
#
|
1537
|
-
#
|
1538
|
-
# * If the default VPC in the target Region has an internet gateway
|
1539
|
-
# attached to it, the DB cluster is public.
|
1540
|
-
#
|
1541
|
-
# If `DBSubnetGroupName` is specified, and `PubliclyAccessible` isn't
|
1542
|
-
# specified, the following applies:
|
1543
|
-
#
|
1544
|
-
# * If the subnets are part of a VPC that doesn’t have an internet
|
1545
|
-
# gateway attached to it, the DB cluster is private.
|
1546
|
-
#
|
1547
|
-
# * If the subnets are part of a VPC that has an internet gateway
|
1548
|
-
# attached to it, the DB cluster is public.
|
1537
|
+
# If `PubliclyAccessible` is true and the VPC that the `DBSubnetGroup`
|
1538
|
+
# is in doesn't have an internet gateway attached to it, Amazon RDS
|
1539
|
+
# returns an error.
|
1549
1540
|
# @option options [Boolean] :auto_minor_version_upgrade
|
1550
1541
|
# Specifies whether minor engine upgrades are applied automatically to
|
1551
1542
|
# the DB cluster during the maintenance window. By default, minor engine
|
@@ -1729,37 +1729,28 @@ module Aws::RDS
|
|
1729
1729
|
# Specifies whether the DB instance is publicly accessible.
|
1730
1730
|
#
|
1731
1731
|
# When the DB instance is publicly accessible and you connect from
|
1732
|
-
# outside of the DB instance's virtual private cloud (VPC), its
|
1733
|
-
#
|
1732
|
+
# outside of the DB instance's virtual private cloud (VPC), its domain
|
1733
|
+
# name system (DNS) endpoint resolves to the public IP address. When you
|
1734
1734
|
# connect from within the same VPC as the DB instance, the endpoint
|
1735
1735
|
# resolves to the private IP address. Access to the DB instance is
|
1736
|
-
#
|
1737
|
-
# access is not permitted if the security group assigned to the DB
|
1738
|
-
# instance doesn't permit it.
|
1736
|
+
# controlled by its security group settings.
|
1739
1737
|
#
|
1740
1738
|
# When the DB instance isn't publicly accessible, it is an internal DB
|
1741
1739
|
# instance with a DNS name that resolves to a private IP address.
|
1742
1740
|
#
|
1743
|
-
#
|
1744
|
-
# `
|
1745
|
-
#
|
1746
|
-
# If `DBSubnetGroupName` isn't specified, and `PubliclyAccessible`
|
1747
|
-
# isn't specified, the following applies:
|
1741
|
+
# The default behavior when `PubliclyAccessible` is not specified
|
1742
|
+
# depends on whether a `DBSubnetGroup` is specified.
|
1748
1743
|
#
|
1749
|
-
#
|
1750
|
-
#
|
1744
|
+
# If `DBSubnetGroup` isn't specified, `PubliclyAccessible` defaults to
|
1745
|
+
# `false` for Aurora instances and `true` for non-Aurora instances.
|
1751
1746
|
#
|
1752
|
-
#
|
1753
|
-
#
|
1747
|
+
# If `DBSubnetGroup` is specified, `PubliclyAccessible` defaults to
|
1748
|
+
# `false` unless the value of `DBSubnetGroup` is `default`, in which
|
1749
|
+
# case `PubliclyAccessible` defaults to `true`.
|
1754
1750
|
#
|
1755
|
-
# If `
|
1756
|
-
#
|
1757
|
-
#
|
1758
|
-
# * If the subnets are part of a VPC that doesn’t have an internet
|
1759
|
-
# gateway attached to it, the DB instance is private.
|
1760
|
-
#
|
1761
|
-
# * If the subnets are part of a VPC that has an internet gateway
|
1762
|
-
# attached to it, the DB instance is public.
|
1751
|
+
# If `PubliclyAccessible` is true and the VPC that the `DBSubnetGroup`
|
1752
|
+
# is in doesn't have an internet gateway attached to it, Amazon RDS
|
1753
|
+
# returns an error.
|
1763
1754
|
# @option options [Array<Types::Tag>] :tags
|
1764
1755
|
# Tags to assign to the DB instance.
|
1765
1756
|
# @option options [String] :db_cluster_identifier
|
@@ -3742,7 +3733,7 @@ module Aws::RDS
|
|
3742
3733
|
#
|
3743
3734
|
# * Must be in the distinguished name format.
|
3744
3735
|
#
|
3745
|
-
#
|
3736
|
+
# ^
|
3746
3737
|
#
|
3747
3738
|
# Example:
|
3748
3739
|
# `OU=mymanagedADtestOU,DC=mymanagedADtest,DC=mymanagedAD,DC=mydomain`
|
@@ -13,22 +13,22 @@ module Aws::RDS
|
|
13
13
|
# @!attribute region
|
14
14
|
# The AWS region used to dispatch the request.
|
15
15
|
#
|
16
|
-
# @return [
|
16
|
+
# @return [string]
|
17
17
|
#
|
18
18
|
# @!attribute use_dual_stack
|
19
19
|
# When true, use the dual-stack endpoint. If the configured endpoint does not support dual-stack, dispatching the request MAY return an error.
|
20
20
|
#
|
21
|
-
# @return [
|
21
|
+
# @return [boolean]
|
22
22
|
#
|
23
23
|
# @!attribute use_fips
|
24
24
|
# When true, send this request to the FIPS-compliant regional endpoint. If the configured endpoint does not have a FIPS compliant endpoint, dispatching the request will return an error.
|
25
25
|
#
|
26
|
-
# @return [
|
26
|
+
# @return [boolean]
|
27
27
|
#
|
28
28
|
# @!attribute endpoint
|
29
29
|
# Override the endpoint used to send this request
|
30
30
|
#
|
31
|
-
# @return [
|
31
|
+
# @return [string]
|
32
32
|
#
|
33
33
|
EndpointParameters = Struct.new(
|
34
34
|
:region,
|
data/lib/aws-sdk-rds/resource.rb
CHANGED
@@ -649,40 +649,31 @@ module Aws::RDS
|
|
649
649
|
# @option options [Boolean] :publicly_accessible
|
650
650
|
# Specifies whether the DB cluster is publicly accessible.
|
651
651
|
#
|
652
|
+
# Valid for Cluster Type: Multi-AZ DB clusters only
|
653
|
+
#
|
652
654
|
# When the DB cluster is publicly accessible and you connect from
|
653
|
-
# outside of the DB cluster's virtual private cloud (VPC), its
|
654
|
-
#
|
655
|
+
# outside of the DB cluster's virtual private cloud (VPC), its domain
|
656
|
+
# name system (DNS) endpoint resolves to the public IP address. When you
|
655
657
|
# connect from within the same VPC as the DB cluster, the endpoint
|
656
658
|
# resolves to the private IP address. Access to the DB cluster is
|
657
|
-
#
|
658
|
-
# access isn't permitted if the security group assigned to the DB
|
659
|
-
# cluster doesn't permit it.
|
659
|
+
# controlled by its security group settings.
|
660
660
|
#
|
661
661
|
# When the DB cluster isn't publicly accessible, it is an internal DB
|
662
662
|
# cluster with a DNS name that resolves to a private IP address.
|
663
663
|
#
|
664
|
-
#
|
665
|
-
#
|
666
|
-
# Default: The default behavior varies depending on whether
|
667
|
-
# `DBSubnetGroupName` is specified.
|
668
|
-
#
|
669
|
-
# If `DBSubnetGroupName` isn't specified, and `PubliclyAccessible`
|
670
|
-
# isn't specified, the following applies:
|
664
|
+
# The default behavior when `PubliclyAccessible` is not specified
|
665
|
+
# depends on whether a `DBSubnetGroup` is specified.
|
671
666
|
#
|
672
|
-
#
|
673
|
-
#
|
667
|
+
# If `DBSubnetGroup` isn't specified, `PubliclyAccessible` defaults to
|
668
|
+
# `true`.
|
674
669
|
#
|
675
|
-
#
|
676
|
-
#
|
670
|
+
# If `DBSubnetGroup` is specified, `PubliclyAccessible` defaults to
|
671
|
+
# `false` unless the value of `DBSubnetGroup` is `default`, in which
|
672
|
+
# case `PubliclyAccessible` defaults to `true`.
|
677
673
|
#
|
678
|
-
# If `
|
679
|
-
#
|
680
|
-
#
|
681
|
-
# * If the subnets are part of a VPC that doesn’t have an internet
|
682
|
-
# gateway attached to it, the DB cluster is private.
|
683
|
-
#
|
684
|
-
# * If the subnets are part of a VPC that has an internet gateway
|
685
|
-
# attached to it, the DB cluster is public.
|
674
|
+
# If `PubliclyAccessible` is true and the VPC that the `DBSubnetGroup`
|
675
|
+
# is in doesn't have an internet gateway attached to it, Amazon RDS
|
676
|
+
# returns an error.
|
686
677
|
# @option options [Boolean] :auto_minor_version_upgrade
|
687
678
|
# Specifies whether minor engine upgrades are applied automatically to
|
688
679
|
# the DB cluster during the maintenance window. By default, minor engine
|
@@ -1901,37 +1892,28 @@ module Aws::RDS
|
|
1901
1892
|
# Specifies whether the DB instance is publicly accessible.
|
1902
1893
|
#
|
1903
1894
|
# When the DB instance is publicly accessible and you connect from
|
1904
|
-
# outside of the DB instance's virtual private cloud (VPC), its
|
1905
|
-
#
|
1895
|
+
# outside of the DB instance's virtual private cloud (VPC), its domain
|
1896
|
+
# name system (DNS) endpoint resolves to the public IP address. When you
|
1906
1897
|
# connect from within the same VPC as the DB instance, the endpoint
|
1907
1898
|
# resolves to the private IP address. Access to the DB instance is
|
1908
|
-
#
|
1909
|
-
# access is not permitted if the security group assigned to the DB
|
1910
|
-
# instance doesn't permit it.
|
1899
|
+
# controlled by its security group settings.
|
1911
1900
|
#
|
1912
1901
|
# When the DB instance isn't publicly accessible, it is an internal DB
|
1913
1902
|
# instance with a DNS name that resolves to a private IP address.
|
1914
1903
|
#
|
1915
|
-
#
|
1916
|
-
# `
|
1917
|
-
#
|
1918
|
-
# If `DBSubnetGroupName` isn't specified, and `PubliclyAccessible`
|
1919
|
-
# isn't specified, the following applies:
|
1920
|
-
#
|
1921
|
-
# * If the default VPC in the target Region doesn’t have an internet
|
1922
|
-
# gateway attached to it, the DB instance is private.
|
1923
|
-
#
|
1924
|
-
# * If the default VPC in the target Region has an internet gateway
|
1925
|
-
# attached to it, the DB instance is public.
|
1904
|
+
# The default behavior when `PubliclyAccessible` is not specified
|
1905
|
+
# depends on whether a `DBSubnetGroup` is specified.
|
1926
1906
|
#
|
1927
|
-
# If `
|
1928
|
-
#
|
1907
|
+
# If `DBSubnetGroup` isn't specified, `PubliclyAccessible` defaults to
|
1908
|
+
# `false` for Aurora instances and `true` for non-Aurora instances.
|
1929
1909
|
#
|
1930
|
-
#
|
1931
|
-
#
|
1910
|
+
# If `DBSubnetGroup` is specified, `PubliclyAccessible` defaults to
|
1911
|
+
# `false` unless the value of `DBSubnetGroup` is `default`, in which
|
1912
|
+
# case `PubliclyAccessible` defaults to `true`.
|
1932
1913
|
#
|
1933
|
-
#
|
1934
|
-
#
|
1914
|
+
# If `PubliclyAccessible` is true and the VPC that the `DBSubnetGroup`
|
1915
|
+
# is in doesn't have an internet gateway attached to it, Amazon RDS
|
1916
|
+
# returns an error.
|
1935
1917
|
# @option options [Array<Types::Tag>] :tags
|
1936
1918
|
# Tags to assign to the DB instance.
|
1937
1919
|
# @option options [String] :db_cluster_identifier
|
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -2790,40 +2790,31 @@ module Aws::RDS
|
|
2790
2790
|
# @!attribute [rw] publicly_accessible
|
2791
2791
|
# Specifies whether the DB cluster is publicly accessible.
|
2792
2792
|
#
|
2793
|
+
# Valid for Cluster Type: Multi-AZ DB clusters only
|
2794
|
+
#
|
2793
2795
|
# When the DB cluster is publicly accessible and you connect from
|
2794
|
-
# outside of the DB cluster's virtual private cloud (VPC), its
|
2795
|
-
#
|
2796
|
+
# outside of the DB cluster's virtual private cloud (VPC), its domain
|
2797
|
+
# name system (DNS) endpoint resolves to the public IP address. When
|
2796
2798
|
# you connect from within the same VPC as the DB cluster, the endpoint
|
2797
2799
|
# resolves to the private IP address. Access to the DB cluster is
|
2798
|
-
#
|
2799
|
-
# access isn't permitted if the security group assigned to the DB
|
2800
|
-
# cluster doesn't permit it.
|
2800
|
+
# controlled by its security group settings.
|
2801
2801
|
#
|
2802
2802
|
# When the DB cluster isn't publicly accessible, it is an internal DB
|
2803
2803
|
# cluster with a DNS name that resolves to a private IP address.
|
2804
2804
|
#
|
2805
|
-
#
|
2805
|
+
# The default behavior when `PubliclyAccessible` is not specified
|
2806
|
+
# depends on whether a `DBSubnetGroup` is specified.
|
2806
2807
|
#
|
2807
|
-
#
|
2808
|
-
# `
|
2808
|
+
# If `DBSubnetGroup` isn't specified, `PubliclyAccessible` defaults
|
2809
|
+
# to `true`.
|
2809
2810
|
#
|
2810
|
-
# If `
|
2811
|
-
#
|
2811
|
+
# If `DBSubnetGroup` is specified, `PubliclyAccessible` defaults to
|
2812
|
+
# `false` unless the value of `DBSubnetGroup` is `default`, in which
|
2813
|
+
# case `PubliclyAccessible` defaults to `true`.
|
2812
2814
|
#
|
2813
|
-
#
|
2814
|
-
#
|
2815
|
-
#
|
2816
|
-
# * If the default VPC in the target Region has an internet gateway
|
2817
|
-
# attached to it, the DB cluster is public.
|
2818
|
-
#
|
2819
|
-
# If `DBSubnetGroupName` is specified, and `PubliclyAccessible` isn't
|
2820
|
-
# specified, the following applies:
|
2821
|
-
#
|
2822
|
-
# * If the subnets are part of a VPC that doesn’t have an internet
|
2823
|
-
# gateway attached to it, the DB cluster is private.
|
2824
|
-
#
|
2825
|
-
# * If the subnets are part of a VPC that has an internet gateway
|
2826
|
-
# attached to it, the DB cluster is public.
|
2815
|
+
# If `PubliclyAccessible` is true and the VPC that the `DBSubnetGroup`
|
2816
|
+
# is in doesn't have an internet gateway attached to it, Amazon RDS
|
2817
|
+
# returns an error.
|
2827
2818
|
# @return [Boolean]
|
2828
2819
|
#
|
2829
2820
|
# @!attribute [rw] auto_minor_version_upgrade
|
@@ -4235,36 +4226,27 @@ module Aws::RDS
|
|
4235
4226
|
#
|
4236
4227
|
# When the DB instance is publicly accessible and you connect from
|
4237
4228
|
# outside of the DB instance's virtual private cloud (VPC), its
|
4238
|
-
#
|
4229
|
+
# domain name system (DNS) endpoint resolves to the public IP address.
|
4239
4230
|
# When you connect from within the same VPC as the DB instance, the
|
4240
4231
|
# endpoint resolves to the private IP address. Access to the DB
|
4241
|
-
# instance is
|
4242
|
-
# That public access is not permitted if the security group assigned
|
4243
|
-
# to the DB instance doesn't permit it.
|
4232
|
+
# instance is controlled by its security group settings.
|
4244
4233
|
#
|
4245
4234
|
# When the DB instance isn't publicly accessible, it is an internal
|
4246
4235
|
# DB instance with a DNS name that resolves to a private IP address.
|
4247
4236
|
#
|
4248
|
-
#
|
4249
|
-
# `
|
4250
|
-
#
|
4251
|
-
# If `DBSubnetGroupName` isn't specified, and `PubliclyAccessible`
|
4252
|
-
# isn't specified, the following applies:
|
4253
|
-
#
|
4254
|
-
# * If the default VPC in the target Region doesn’t have an internet
|
4255
|
-
# gateway attached to it, the DB instance is private.
|
4237
|
+
# The default behavior when `PubliclyAccessible` is not specified
|
4238
|
+
# depends on whether a `DBSubnetGroup` is specified.
|
4256
4239
|
#
|
4257
|
-
#
|
4258
|
-
#
|
4240
|
+
# If `DBSubnetGroup` isn't specified, `PubliclyAccessible` defaults
|
4241
|
+
# to `false` for Aurora instances and `true` for non-Aurora instances.
|
4259
4242
|
#
|
4260
|
-
# If `
|
4261
|
-
#
|
4243
|
+
# If `DBSubnetGroup` is specified, `PubliclyAccessible` defaults to
|
4244
|
+
# `false` unless the value of `DBSubnetGroup` is `default`, in which
|
4245
|
+
# case `PubliclyAccessible` defaults to `true`.
|
4262
4246
|
#
|
4263
|
-
#
|
4264
|
-
#
|
4265
|
-
#
|
4266
|
-
# * If the subnets are part of a VPC that has an internet gateway
|
4267
|
-
# attached to it, the DB instance is public.
|
4247
|
+
# If `PubliclyAccessible` is true and the VPC that the `DBSubnetGroup`
|
4248
|
+
# is in doesn't have an internet gateway attached to it, Amazon RDS
|
4249
|
+
# returns an error.
|
4268
4250
|
# @return [Boolean]
|
4269
4251
|
#
|
4270
4252
|
# @!attribute [rw] tags
|
@@ -19426,7 +19408,7 @@ module Aws::RDS
|
|
19426
19408
|
#
|
19427
19409
|
# * Must be in the distinguished name format.
|
19428
19410
|
#
|
19429
|
-
#
|
19411
|
+
# ^
|
19430
19412
|
#
|
19431
19413
|
# Example:
|
19432
19414
|
# `OU=mymanagedADtestOU,DC=mymanagedADtest,DC=mymanagedAD,DC=mydomain`
|
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.295.0'
|
84
84
|
|
85
85
|
end
|
86
86
|
|