aws-sdk-rds 1.295.0 → 1.296.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 375c70dbbd8458d6a61f6788112c192ed1b017e726769d0680844213f4b94f7e
4
- data.tar.gz: 19b56df7db18cd513b7f59c5a78fc98692b36a77a3f071b3b5453b9389cc6b92
3
+ metadata.gz: a1bb14b4c651e9903359564097361efff8cc4779b26bc7437d1f9451daebf6fa
4
+ data.tar.gz: 8e4a2370ac7e3af0f64af3f6fb88177d0e2693caa445c6b97121f0d17c46381e
5
5
  SHA512:
6
- metadata.gz: 3012cb140d84aefc6c6091e93404c7239b89d8bf1627de69d68a527160fbf3d386b0174eb7419bc38c1527107e1637e6bd01b6025bb57c84bb3815a6e6c1993d
7
- data.tar.gz: 1110146d9939ba1aaffeff6c3bc2cb40776e136303a084529a006d87a114e52c2085844bffe5b7a7cb1eab50cb71f2c46c02bb8a40b9a4b8e77e6cc6cb53c563
6
+ metadata.gz: 5918cfc588492770bdada2288e8aa7f331ee16c4791f9a4eacf748be048ed11a2b593dc35cda12b507c74a4740297f0148d2446bd5c6f0425a99677f812e2b41
7
+ data.tar.gz: e75e23bb9517095d1d326b1145b26f53c3dcc0a55b29993a8d68ad4533fc3febc2f068b202cc767cfef9191d3f801382ceb5ff14bf0b2e1bb7bd12b003f53c1d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.296.0 (2025-10-10)
5
+ ------------------
6
+
7
+ * Feature - Updated the text in the Important section of the ModifyDBClusterParameterGroup page.
8
+
4
9
  1.295.0 (2025-10-06)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.295.0
1
+ 1.296.0
@@ -3261,31 +3261,40 @@ 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
- #
3266
3264
  # When the DB cluster is publicly accessible and you connect from
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
3265
+ # outside of the DB cluster's virtual private cloud (VPC), its Domain
3266
+ # Name System (DNS) endpoint resolves to the public IP address. When you
3269
3267
  # connect from within the same VPC as the DB cluster, the endpoint
3270
3268
  # resolves to the private IP address. Access to the DB cluster is
3271
- # controlled by its security group settings.
3269
+ # ultimately controlled by the security group it uses. That public
3270
+ # access isn't permitted if the security group assigned to the DB
3271
+ # cluster doesn't permit it.
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
- # The default behavior when `PubliclyAccessible` is not specified
3277
- # depends on whether a `DBSubnetGroup` is specified.
3276
+ # Valid for Cluster Type: Multi-AZ DB clusters only
3278
3277
  #
3279
- # If `DBSubnetGroup` isn't specified, `PubliclyAccessible` defaults to
3280
- # `true`.
3278
+ # Default: The default behavior varies depending on whether
3279
+ # `DBSubnetGroupName` is specified.
3281
3280
  #
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`.
3281
+ # If `DBSubnetGroupName` isn't specified, and `PubliclyAccessible`
3282
+ # isn't specified, the following applies:
3285
3283
  #
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.
3284
+ # * If the default VPC in the target Region doesn’t have an internet
3285
+ # gateway attached to it, the DB cluster is private.
3286
+ #
3287
+ # * If the default VPC in the target Region has an internet gateway
3288
+ # attached to it, the DB cluster is public.
3289
+ #
3290
+ # If `DBSubnetGroupName` is specified, and `PubliclyAccessible` isn't
3291
+ # specified, the following applies:
3292
+ #
3293
+ # * If the subnets are part of a VPC that doesn’t have an internet
3294
+ # gateway attached to it, the DB cluster is private.
3295
+ #
3296
+ # * If the subnets are part of a VPC that has an internet gateway
3297
+ # attached to it, the DB cluster is public.
3289
3298
  #
3290
3299
  # @option params [Boolean] :auto_minor_version_upgrade
3291
3300
  # Specifies whether minor engine upgrades are applied automatically to
@@ -5188,28 +5197,37 @@ module Aws::RDS
5188
5197
  # Specifies whether the DB instance is publicly accessible.
5189
5198
  #
5190
5199
  # When the DB instance is publicly accessible and you connect from
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
5200
+ # outside of the DB instance's virtual private cloud (VPC), its Domain
5201
+ # Name System (DNS) endpoint resolves to the public IP address. When you
5193
5202
  # connect from within the same VPC as the DB instance, the endpoint
5194
5203
  # resolves to the private IP address. Access to the DB instance is
5195
- # controlled by its security group settings.
5204
+ # ultimately controlled by the security group it uses. That public
5205
+ # access is not permitted if the security group assigned to the DB
5206
+ # instance doesn't permit it.
5196
5207
  #
5197
5208
  # When the DB instance isn't publicly accessible, it is an internal DB
5198
5209
  # instance with a DNS name that resolves to a private IP address.
5199
5210
  #
5200
- # The default behavior when `PubliclyAccessible` is not specified
5201
- # depends on whether a `DBSubnetGroup` is specified.
5211
+ # Default: The default behavior varies depending on whether
5212
+ # `DBSubnetGroupName` is specified.
5202
5213
  #
5203
- # If `DBSubnetGroup` isn't specified, `PubliclyAccessible` defaults to
5204
- # `false` for Aurora instances and `true` for non-Aurora instances.
5214
+ # If `DBSubnetGroupName` isn't specified, and `PubliclyAccessible`
5215
+ # isn't specified, the following applies:
5205
5216
  #
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`.
5217
+ # * If the default VPC in the target Region doesn’t have an internet
5218
+ # gateway attached to it, the DB instance is private.
5219
+ #
5220
+ # * If the default VPC in the target Region has an internet gateway
5221
+ # attached to it, the DB instance is public.
5209
5222
  #
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.
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.
5213
5231
  #
5214
5232
  # @option params [Array<Types::Tag>] :tags
5215
5233
  # Tags to assign to the DB instance.
@@ -20339,23 +20357,14 @@ module Aws::RDS
20339
20357
  # `ParameterName`, `ParameterValue`, and `ApplyMethod`. A maximum of 20
20340
20358
  # parameters can be modified in a single request.
20341
20359
  #
20342
- # After you create a DB cluster parameter group, you should wait at
20343
- # least 5 minutes before creating your first DB cluster that uses that
20344
- # DB cluster parameter group as the default parameter group. This allows
20345
- # Amazon RDS to fully complete the create operation before the parameter
20346
- # group is used as the default for a new DB cluster. This is especially
20347
- # important for parameters that are critical when creating the default
20348
- # database for a DB cluster, such as the character set for the default
20349
- # database defined by the `character_set_database` parameter. You can
20350
- # use the *Parameter Groups* option of the [Amazon RDS console][1] or
20351
- # the `DescribeDBClusterParameters` operation to verify that your DB
20352
- # cluster parameter group has been created or modified.
20353
- #
20354
- # If the modified DB cluster parameter group is used by an Aurora
20355
- # Serverless v1 cluster, Aurora applies the update immediately. The
20356
- # cluster restart might interrupt your workload. In that case, your
20357
- # application must reopen any connections and retry any transactions
20358
- # that were active when the parameter changes took effect.
20360
+ # There are two types of parameters - dynamic parameters and static
20361
+ # parameters. Changes to dynamic parameters are applied to the DB
20362
+ # cluster immediately without a reboot. Changes to static parameters are
20363
+ # applied only after the DB cluster is rebooted, which can be done using
20364
+ # `RebootDBCluster` operation. You can use the *Parameter Groups* option
20365
+ # of the [Amazon RDS console][1] or the `DescribeDBClusterParameters`
20366
+ # operation to verify that your DB cluster parameter group has been
20367
+ # created or modified.
20359
20368
  #
20360
20369
  # For more information on Amazon Aurora DB clusters, see [ What is
20361
20370
  # Amazon Aurora?][2] in the *Amazon Aurora User Guide*.
@@ -21168,7 +21177,7 @@ module Aws::RDS
21168
21177
  #
21169
21178
  # * Must be in the distinguished name format.
21170
21179
  #
21171
- # ^
21180
+ # * Can't be longer than 64 characters.
21172
21181
  #
21173
21182
  # Example:
21174
21183
  # `OU=mymanagedADtestOU,DC=mymanagedADtest,DC=mymanagedAD,DC=mydomain`
@@ -32596,7 +32605,7 @@ module Aws::RDS
32596
32605
  tracer: tracer
32597
32606
  )
32598
32607
  context[:gem_name] = 'aws-sdk-rds'
32599
- context[:gem_version] = '1.295.0'
32608
+ context[:gem_version] = '1.296.0'
32600
32609
  Seahorse::Client::Request.new(handlers, context)
32601
32610
  end
32602
32611
 
@@ -1512,31 +1512,40 @@ 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
- #
1517
1515
  # When the DB cluster is publicly accessible and you connect from
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
1516
+ # outside of the DB cluster's virtual private cloud (VPC), its Domain
1517
+ # Name System (DNS) endpoint resolves to the public IP address. When you
1520
1518
  # connect from within the same VPC as the DB cluster, the endpoint
1521
1519
  # resolves to the private IP address. Access to the DB cluster is
1522
- # controlled by its security group settings.
1520
+ # ultimately controlled by the security group it uses. That public
1521
+ # access isn't permitted if the security group assigned to the DB
1522
+ # cluster doesn't permit it.
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
- # The default behavior when `PubliclyAccessible` is not specified
1528
- # depends on whether a `DBSubnetGroup` is specified.
1527
+ # Valid for Cluster Type: Multi-AZ DB clusters only
1529
1528
  #
1530
- # If `DBSubnetGroup` isn't specified, `PubliclyAccessible` defaults to
1531
- # `true`.
1529
+ # Default: The default behavior varies depending on whether
1530
+ # `DBSubnetGroupName` is specified.
1532
1531
  #
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`.
1532
+ # If `DBSubnetGroupName` isn't specified, and `PubliclyAccessible`
1533
+ # isn't specified, the following applies:
1536
1534
  #
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.
1535
+ # * If the default VPC in the target Region doesn’t have an internet
1536
+ # gateway attached to it, the DB cluster is private.
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.
1540
1549
  # @option options [Boolean] :auto_minor_version_upgrade
1541
1550
  # Specifies whether minor engine upgrades are applied automatically to
1542
1551
  # the DB cluster during the maintenance window. By default, minor engine
@@ -1729,28 +1729,37 @@ 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 domain
1733
- # name system (DNS) endpoint resolves to the public IP address. When you
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
- # controlled by its security group settings.
1736
+ # ultimately controlled by the security group it uses. That public
1737
+ # access is not permitted if the security group assigned to the DB
1738
+ # instance doesn't permit it.
1737
1739
  #
1738
1740
  # When the DB instance isn't publicly accessible, it is an internal DB
1739
1741
  # instance with a DNS name that resolves to a private IP address.
1740
1742
  #
1741
- # The default behavior when `PubliclyAccessible` is not specified
1742
- # depends on whether a `DBSubnetGroup` is specified.
1743
+ # Default: The default behavior varies depending on whether
1744
+ # `DBSubnetGroupName` is specified.
1745
+ #
1746
+ # If `DBSubnetGroupName` isn't specified, and `PubliclyAccessible`
1747
+ # isn't specified, the following applies:
1743
1748
  #
1744
- # If `DBSubnetGroup` isn't specified, `PubliclyAccessible` defaults to
1745
- # `false` for Aurora instances and `true` for non-Aurora instances.
1749
+ # * If the default VPC in the target Region doesn’t have an internet
1750
+ # gateway attached to it, the DB instance is private.
1746
1751
  #
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`.
1752
+ # * If the default VPC in the target Region has an internet gateway
1753
+ # attached to it, the DB instance is public.
1750
1754
  #
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.
1755
+ # If `DBSubnetGroupName` is specified, and `PubliclyAccessible` isn't
1756
+ # specified, the following applies:
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.
1754
1763
  # @option options [Array<Types::Tag>] :tags
1755
1764
  # Tags to assign to the DB instance.
1756
1765
  # @option options [String] :db_cluster_identifier
@@ -3733,7 +3742,7 @@ module Aws::RDS
3733
3742
  #
3734
3743
  # * Must be in the distinguished name format.
3735
3744
  #
3736
- # ^
3745
+ # * Can't be longer than 64 characters.
3737
3746
  #
3738
3747
  # Example:
3739
3748
  # `OU=mymanagedADtestOU,DC=mymanagedADtest,DC=mymanagedAD,DC=mydomain`
@@ -649,31 +649,40 @@ 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
- #
654
652
  # When the DB cluster is publicly accessible and you connect from
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
653
+ # outside of the DB cluster's virtual private cloud (VPC), its Domain
654
+ # Name System (DNS) endpoint resolves to the public IP address. When you
657
655
  # connect from within the same VPC as the DB cluster, the endpoint
658
656
  # resolves to the private IP address. Access to the DB cluster is
659
- # controlled by its security group settings.
657
+ # ultimately controlled by the security group it uses. That public
658
+ # access isn't permitted if the security group assigned to the DB
659
+ # cluster doesn't permit it.
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
- # The default behavior when `PubliclyAccessible` is not specified
665
- # depends on whether a `DBSubnetGroup` is specified.
664
+ # Valid for Cluster Type: Multi-AZ DB clusters only
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:
666
671
  #
667
- # If `DBSubnetGroup` isn't specified, `PubliclyAccessible` defaults to
668
- # `true`.
672
+ # * If the default VPC in the target Region doesn’t have an internet
673
+ # gateway attached to it, the DB cluster is private.
669
674
  #
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`.
675
+ # * If the default VPC in the target Region has an internet gateway
676
+ # attached to it, the DB cluster is public.
673
677
  #
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.
678
+ # If `DBSubnetGroupName` is specified, and `PubliclyAccessible` isn't
679
+ # specified, the following applies:
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.
677
686
  # @option options [Boolean] :auto_minor_version_upgrade
678
687
  # Specifies whether minor engine upgrades are applied automatically to
679
688
  # the DB cluster during the maintenance window. By default, minor engine
@@ -1892,28 +1901,37 @@ module Aws::RDS
1892
1901
  # Specifies whether the DB instance is publicly accessible.
1893
1902
  #
1894
1903
  # When the DB instance is publicly accessible and you connect from
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
1904
+ # outside of the DB instance's virtual private cloud (VPC), its Domain
1905
+ # Name System (DNS) endpoint resolves to the public IP address. When you
1897
1906
  # connect from within the same VPC as the DB instance, the endpoint
1898
1907
  # resolves to the private IP address. Access to the DB instance is
1899
- # controlled by its security group settings.
1908
+ # ultimately controlled by the security group it uses. That public
1909
+ # access is not permitted if the security group assigned to the DB
1910
+ # instance doesn't permit it.
1900
1911
  #
1901
1912
  # When the DB instance isn't publicly accessible, it is an internal DB
1902
1913
  # instance with a DNS name that resolves to a private IP address.
1903
1914
  #
1904
- # The default behavior when `PubliclyAccessible` is not specified
1905
- # depends on whether a `DBSubnetGroup` is specified.
1915
+ # Default: The default behavior varies depending on whether
1916
+ # `DBSubnetGroupName` is specified.
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.
1906
1926
  #
1907
- # If `DBSubnetGroup` isn't specified, `PubliclyAccessible` defaults to
1908
- # `false` for Aurora instances and `true` for non-Aurora instances.
1927
+ # If `DBSubnetGroupName` is specified, and `PubliclyAccessible` isn't
1928
+ # specified, the following applies:
1909
1929
  #
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`.
1930
+ # * If the subnets are part of a VPC that doesn’t have an internet
1931
+ # gateway attached to it, the DB instance is private.
1913
1932
  #
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.
1933
+ # * If the subnets are part of a VPC that has an internet gateway
1934
+ # attached to it, the DB instance is public.
1917
1935
  # @option options [Array<Types::Tag>] :tags
1918
1936
  # Tags to assign to the DB instance.
1919
1937
  # @option options [String] :db_cluster_identifier
@@ -2790,31 +2790,40 @@ 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
- #
2795
2793
  # When the DB cluster is publicly accessible and you connect from
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
2794
+ # outside of the DB cluster's virtual private cloud (VPC), its Domain
2795
+ # Name System (DNS) endpoint resolves to the public IP address. When
2798
2796
  # you connect from within the same VPC as the DB cluster, the endpoint
2799
2797
  # resolves to the private IP address. Access to the DB cluster is
2800
- # controlled by its security group settings.
2798
+ # ultimately controlled by the security group it uses. That public
2799
+ # access isn't permitted if the security group assigned to the DB
2800
+ # cluster doesn't permit it.
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
- # The default behavior when `PubliclyAccessible` is not specified
2806
- # depends on whether a `DBSubnetGroup` is specified.
2805
+ # Valid for Cluster Type: Multi-AZ DB clusters only
2807
2806
  #
2808
- # If `DBSubnetGroup` isn't specified, `PubliclyAccessible` defaults
2809
- # to `true`.
2807
+ # Default: The default behavior varies depending on whether
2808
+ # `DBSubnetGroupName` is specified.
2810
2809
  #
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`.
2810
+ # If `DBSubnetGroupName` isn't specified, and `PubliclyAccessible`
2811
+ # isn't specified, the following applies:
2814
2812
  #
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.
2813
+ # * If the default VPC in the target Region doesn’t have an internet
2814
+ # gateway attached to it, the DB cluster is private.
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.
2818
2827
  # @return [Boolean]
2819
2828
  #
2820
2829
  # @!attribute [rw] auto_minor_version_upgrade
@@ -4226,27 +4235,36 @@ module Aws::RDS
4226
4235
  #
4227
4236
  # When the DB instance is publicly accessible and you connect from
4228
4237
  # outside of the DB instance's virtual private cloud (VPC), its
4229
- # domain name system (DNS) endpoint resolves to the public IP address.
4238
+ # Domain Name System (DNS) endpoint resolves to the public IP address.
4230
4239
  # When you connect from within the same VPC as the DB instance, the
4231
4240
  # endpoint resolves to the private IP address. Access to the DB
4232
- # instance is controlled by its security group settings.
4241
+ # instance is ultimately controlled by the security group it uses.
4242
+ # That public access is not permitted if the security group assigned
4243
+ # to the DB instance doesn't permit it.
4233
4244
  #
4234
4245
  # When the DB instance isn't publicly accessible, it is an internal
4235
4246
  # DB instance with a DNS name that resolves to a private IP address.
4236
4247
  #
4237
- # The default behavior when `PubliclyAccessible` is not specified
4238
- # depends on whether a `DBSubnetGroup` is specified.
4248
+ # Default: The default behavior varies depending on whether
4249
+ # `DBSubnetGroupName` is specified.
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.
4239
4256
  #
4240
- # If `DBSubnetGroup` isn't specified, `PubliclyAccessible` defaults
4241
- # to `false` for Aurora instances and `true` for non-Aurora instances.
4257
+ # * If the default VPC in the target Region has an internet gateway
4258
+ # attached to it, the DB instance is public.
4242
4259
  #
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`.
4260
+ # If `DBSubnetGroupName` is specified, and `PubliclyAccessible` isn't
4261
+ # specified, the following applies:
4246
4262
  #
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.
4263
+ # * If the subnets are part of a VPC that doesn’t have an internet
4264
+ # gateway attached to it, the DB instance is private.
4265
+ #
4266
+ # * If the subnets are part of a VPC that has an internet gateway
4267
+ # attached to it, the DB instance is public.
4250
4268
  # @return [Boolean]
4251
4269
  #
4252
4270
  # @!attribute [rw] tags
@@ -19408,7 +19426,7 @@ module Aws::RDS
19408
19426
  #
19409
19427
  # * Must be in the distinguished name format.
19410
19428
  #
19411
- # ^
19429
+ # * Can't be longer than 64 characters.
19412
19430
  #
19413
19431
  # Example:
19414
19432
  # `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.295.0'
83
+ GEM_VERSION = '1.296.0'
84
84
 
85
85
  end
86
86
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-rds
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.295.0
4
+ version: 1.296.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services