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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 674b49ba0eea0f42a76a08eb7dd0cf55aea1be67b5f47dc1183247d786448103
4
- data.tar.gz: 0e0f593dbd51c574c54559e0ad933b6adf88a9444489dd26c69aa2e24e326f20
3
+ metadata.gz: 856da7f57f346c76c041ab080a6002c1509c134433d817354724dafc4f61e12c
4
+ data.tar.gz: d02f711b4ac3eaa2dcc8d3021842678a3a6f84c43ebd0f1e690cbe1c4e4f1f3b
5
5
  SHA512:
6
- metadata.gz: 7c1f00a712d7a48d8a7acf47515e40c95b4328a9a3b0712f46f1cef7836176429000ce8e55799e957e784f8da17ad1c90e074b99f33af63ac654a9c5e255ffee
7
- data.tar.gz: 01d6a7fd83fb54fedbb861eb5ed4e794e075414ebb83ba6814722a8e4dab87d157057232b614f7f77b8d05c8871b42e17b6ba04abb27b68bd3b668c1b7164f09
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.238.0
1
+ 1.240.0
@@ -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, its Domain Name System
3184
- # (DNS) endpoint resolves to the private IP address from within the DB
3185
- # cluster's virtual private cloud (VPC). It resolves to the public IP
3186
- # address from outside of the DB cluster's VPC. Access to the DB
3187
- # cluster is ultimately controlled by the security group it uses. That
3188
- # public access isn't permitted if the security group assigned to the
3189
- # DB cluster doesn't permit it.
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, its Domain Name System
4969
- # (DNS) endpoint resolves to the private IP address from within the DB
4970
- # instance's virtual private cloud (VPC). It resolves to the public IP
4971
- # address from outside of the DB instance's VPC. Access to the DB
4972
- # instance is ultimately controlled by the security group it uses. That
4973
- # public access is not permitted if the security group assigned to the
4974
- # DB instance doesn't permit it.
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
- # * `customer`
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 cluster is publicly accessible, its Domain Name System
20515
- # (DNS) endpoint resolves to the private IP address from within the DB
20516
- # cluster's virtual private cloud (VPC). It resolves to the public IP
20517
- # address from outside of the DB cluster's VPC. Access to the DB
20518
- # cluster is ultimately controlled by the security group it uses. That
20519
- # public access isn't permitted if the security group assigned to the
20520
- # DB cluster doesn't permit it.
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.238.0'
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, its Domain Name System
519
- # (DNS) endpoint resolves to the private IP address from within the DB
520
- # cluster's virtual private cloud (VPC). It resolves to the public IP
521
- # address from outside of the DB cluster's VPC. Access to the DB
522
- # cluster is ultimately controlled by the security group it uses. That
523
- # public access isn't permitted if the security group assigned to the
524
- # DB cluster doesn't permit it.
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, its Domain Name System
1514
- # (DNS) endpoint resolves to the private IP address from within the DB
1515
- # cluster's virtual private cloud (VPC). It resolves to the public IP
1516
- # address from outside of the DB cluster's VPC. Access to the DB
1517
- # cluster is ultimately controlled by the security group it uses. That
1518
- # public access isn't permitted if the security group assigned to the
1519
- # DB cluster doesn't permit it.
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 cluster is publicly accessible, its Domain Name System
284
- # (DNS) endpoint resolves to the private IP address from within the DB
285
- # cluster's virtual private cloud (VPC). It resolves to the public IP
286
- # address from outside of the DB cluster's VPC. Access to the DB
287
- # cluster is ultimately controlled by the security group it uses. That
288
- # public access isn't permitted if the security group assigned to the
289
- # DB cluster doesn't permit it.
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, its Domain Name System
1692
- # (DNS) endpoint resolves to the private IP address from within the DB
1693
- # instance's virtual private cloud (VPC). It resolves to the public IP
1694
- # address from outside of the DB instance's VPC. Access to the DB
1695
- # instance is ultimately controlled by the security group it uses. That
1696
- # public access is not permitted if the security group assigned to the
1697
- # DB instance doesn't permit it.
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 cluster is publicly accessible, its Domain Name System
3679
- # (DNS) endpoint resolves to the private IP address from within the DB
3680
- # cluster's virtual private cloud (VPC). It resolves to the public IP
3681
- # address from outside of the DB cluster's VPC. Access to the DB
3682
- # cluster is ultimately controlled by the security group it uses. That
3683
- # public access isn't permitted if the security group assigned to the
3684
- # DB cluster doesn't permit it.
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.
@@ -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, its Domain Name System
708
- # (DNS) endpoint resolves to the private IP address from within the DB
709
- # cluster's virtual private cloud (VPC). It resolves to the public IP
710
- # address from outside of the DB cluster's VPC. Access to the DB
711
- # cluster is ultimately controlled by the security group it uses. That
712
- # public access isn't permitted if the security group assigned to the
713
- # DB cluster doesn't permit it.
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: options[:db_cluster][:db_cluster_identifier],
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, its Domain Name System
1827
- # (DNS) endpoint resolves to the private IP address from within the DB
1828
- # instance's virtual private cloud (VPC). It resolves to the public IP
1829
- # address from outside of the DB instance's VPC. Access to the DB
1830
- # instance is ultimately controlled by the security group it uses. That
1831
- # public access is not permitted if the security group assigned to the
1832
- # DB instance doesn't permit it.
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.
@@ -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, its Domain Name System
2727
- # (DNS) endpoint resolves to the private IP address from within the DB
2728
- # cluster's virtual private cloud (VPC). It resolves to the public IP
2729
- # address from outside of the DB cluster's VPC. Access to the DB
2730
- # cluster is ultimately controlled by the security group it uses. That
2731
- # public access isn't permitted if the security group assigned to the
2732
- # DB cluster doesn't permit it.
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, its Domain Name System
4014
- # (DNS) endpoint resolves to the private IP address from within the DB
4015
- # instance's virtual private cloud (VPC). It resolves to the public
4016
- # IP address from outside of the DB instance's VPC. Access to the DB
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, its Domain Name System
6962
- # (DNS) endpoint resolves to the private IP address from within the DB
6963
- # cluster's virtual private cloud (VPC). It resolves to the public IP
6964
- # address from outside of the DB cluster's VPC. Access to the DB
6965
- # cluster is ultimately controlled by the security group it uses. That
6966
- # public access isn't permitted if the security group assigned to the
6967
- # DB cluster doesn't permit it.
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 cluster is publicly accessible, its Domain Name System
8702
- # (DNS) endpoint resolves to the private IP address from within the DB
8703
- # cluster's virtual private cloud (VPC). It resolves to the public IP
8704
- # address from outside of the DB cluster's VPC. Access to the DB
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
- # * `customer`
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 cluster is publicly accessible, its Domain Name System
18603
- # (DNS) endpoint resolves to the private IP address from within the DB
18604
- # cluster's virtual private cloud (VPC). It resolves to the public IP
18605
- # address from outside of the DB cluster's VPC. Access to the DB
18606
- # cluster is ultimately controlled by the security group it uses. That
18607
- # public access isn't permitted if the security group assigned to the
18608
- # DB cluster doesn't permit it.
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
@@ -78,6 +78,6 @@ require_relative 'aws-sdk-rds/customizations'
78
78
  # @!group service
79
79
  module Aws::RDS
80
80
 
81
- GEM_VERSION = '1.238.0'
81
+ GEM_VERSION = '1.240.0'
82
82
 
83
83
  end
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.238.0
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-02 00:00:00.000000000 Z
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