aws-sdk-rds 1.294.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: e87d486b717df156afc051872fb5fe9e8d4099d932c537bca2512a7701f1f417
4
- data.tar.gz: c1308ad7e68438a46585a83feebc9e3d1d7bd3388129a90dc28332b4fe011d38
3
+ metadata.gz: a1bb14b4c651e9903359564097361efff8cc4779b26bc7437d1f9451daebf6fa
4
+ data.tar.gz: 8e4a2370ac7e3af0f64af3f6fb88177d0e2693caa445c6b97121f0d17c46381e
5
5
  SHA512:
6
- metadata.gz: 2c4182cfe98286026ab3890e0be885c3382cc520a6db95fa03d2765b935ac149d6c3c3d4486b23fe8a1f7f4b1b3c6f62f0db8fd75032a44d060aad63f005988e
7
- data.tar.gz: 7065f20c28d829595ed88a5402ae4b35266be53460fe11ffde2498499bda60d788ac306dfb7106f8ddc4d7696c34cb70e7296735dc450a8c5c0ae00577dca9b7
6
+ metadata.gz: 5918cfc588492770bdada2288e8aa7f331ee16c4791f9a4eacf748be048ed11a2b593dc35cda12b507c74a4740297f0148d2446bd5c6f0425a99677f812e2b41
7
+ data.tar.gz: e75e23bb9517095d1d326b1145b26f53c3dcc0a55b29993a8d68ad4533fc3febc2f068b202cc767cfef9191d3f801382ceb5ff14bf0b2e1bb7bd12b003f53c1d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
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
+
9
+ 1.295.0 (2025-10-06)
10
+ ------------------
11
+
12
+ * Feature - Documentation updates to the CreateDBClusterMessage$PubliclyAccessible and CreateDBInstanceMessage$PubliclyAccessible properties.
13
+
4
14
  1.294.0 (2025-09-30)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.294.0
1
+ 1.296.0
@@ -20357,23 +20357,14 @@ module Aws::RDS
20357
20357
  # `ParameterName`, `ParameterValue`, and `ApplyMethod`. A maximum of 20
20358
20358
  # parameters can be modified in a single request.
20359
20359
  #
20360
- # After you create a DB cluster parameter group, you should wait at
20361
- # least 5 minutes before creating your first DB cluster that uses that
20362
- # DB cluster parameter group as the default parameter group. This allows
20363
- # Amazon RDS to fully complete the create operation before the parameter
20364
- # group is used as the default for a new DB cluster. This is especially
20365
- # important for parameters that are critical when creating the default
20366
- # database for a DB cluster, such as the character set for the default
20367
- # database defined by the `character_set_database` parameter. You can
20368
- # use the *Parameter Groups* option of the [Amazon RDS console][1] or
20369
- # the `DescribeDBClusterParameters` operation to verify that your DB
20370
- # cluster parameter group has been created or modified.
20371
- #
20372
- # If the modified DB cluster parameter group is used by an Aurora
20373
- # Serverless v1 cluster, Aurora applies the update immediately. The
20374
- # cluster restart might interrupt your workload. In that case, your
20375
- # application must reopen any connections and retry any transactions
20376
- # 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.
20377
20368
  #
20378
20369
  # For more information on Amazon Aurora DB clusters, see [ What is
20379
20370
  # Amazon Aurora?][2] in the *Amazon Aurora User Guide*.
@@ -32614,7 +32605,7 @@ module Aws::RDS
32614
32605
  tracer: tracer
32615
32606
  )
32616
32607
  context[:gem_name] = 'aws-sdk-rds'
32617
- context[:gem_version] = '1.294.0'
32608
+ context[:gem_version] = '1.296.0'
32618
32609
  Seahorse::Client::Request.new(handlers, context)
32619
32610
  end
32620
32611
 
@@ -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 [String]
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 [Boolean]
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 [Boolean]
26
+ # @return [boolean]
27
27
  #
28
28
  # @!attribute endpoint
29
29
  # Override the endpoint used to send this request
30
30
  #
31
- # @return [String]
31
+ # @return [string]
32
32
  #
33
33
  EndpointParameters = Struct.new(
34
34
  :region,
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.294.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.294.0
4
+ version: 1.296.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services