aws-sdk-rds 1.285.0 → 1.287.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: 2711f1f704c8ad37323733aa34668055e1bc0e1aae84710b1b8ed84bf36799ea
4
- data.tar.gz: 8752c11108efbc6f3131d53ca88f118e1bee229f91d6e30a1ce1494c5e8db4b0
3
+ metadata.gz: 9f3334e273e60cb4c6d7081a5090701c9661f30e170d8f2497aa12d2f409d211
4
+ data.tar.gz: aa0ddd7b4545ed3f72b28b7bce684adadb5be087dd861dd0d3ebca130e275896
5
5
  SHA512:
6
- metadata.gz: a96e76fddd0d036dd03dd10c48fdd26f933f1dfb9fd72470d867bb4eaa81108225946fcf6e5f2c4ac1d3661baed40ed2cdd477c6df63c1f5dfe9c33c7c3fcf07
7
- data.tar.gz: 9bf9f2ae9f83b1cd3a63a5090f7c61ebad2d7882d3a8c074b5a2df2402582c49b6d13f67ba72b0a51c0e936119183d7d787ae94dbd447abdae1b920fcde5445b
6
+ metadata.gz: 36c3f74d9c49b418956285ccc9d91bf77f2b560b121aada950784d4f5f728a8ba1dc0d23bb4df2edc04255d95a23d873d98448da6e12cdb549c1c1f7bc6ebda4
7
+ data.tar.gz: 2248d3568260c33a46a23546f71b2e2266b13b92db1c7410ad7006fd485fb6fa9bb43b95e1eb84fbdfc0d4bdc23d74cefe00a0f14417cca2f840146f19397228
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.287.0 (2025-08-05)
5
+ ------------------
6
+
7
+ * Feature - Adds a new Aurora Serverless v2 attribute to the DBCluster resource to expose the platform version. Also updates the attribute to be part of both the engine version and platform version descriptions.
8
+
9
+ 1.286.0 (2025-08-04)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.285.0 (2025-07-31)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.285.0
1
+ 1.287.0
@@ -97,8 +97,8 @@ module Aws::RDS
97
97
  # class name or an instance of a plugin class.
98
98
  #
99
99
  # @option options [required, Aws::CredentialProvider] :credentials
100
- # Your AWS credentials used for authentication. This can be an instance of any one of the
101
- # following classes:
100
+ # Your AWS credentials used for authentication. This can be any class that includes and implements
101
+ # `Aws::CredentialProvider`, or instance of any one of the following classes:
102
102
  #
103
103
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
104
104
  # credentials.
@@ -126,8 +126,7 @@ module Aws::RDS
126
126
  # * `Aws::CognitoIdentityCredentials` - Used for loading credentials
127
127
  # from the Cognito Identity service.
128
128
  #
129
- # When `:credentials` are not configured directly, the following
130
- # locations will be searched for credentials:
129
+ # When `:credentials` are not configured directly, the following locations will be searched for credentials:
131
130
  #
132
131
  # * `Aws.config[:credentials]`
133
132
  #
@@ -141,12 +140,10 @@ module Aws::RDS
141
140
  #
142
141
  # * `~/.aws/config`
143
142
  #
144
- # * EC2/ECS IMDS instance profile - When used by default, the timeouts
145
- # are very aggressive. Construct and pass an instance of
146
- # `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
147
- # enable retries and extended timeouts. Instance profile credential
148
- # fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
149
- # to `true`.
143
+ # * EC2/ECS IMDS instance profile - When used by default, the timeouts are very aggressive.
144
+ # Construct and pass an instance of `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
145
+ # enable retries and extended timeouts. Instance profile credential fetching can be disabled by
146
+ # setting `ENV['AWS_EC2_METADATA_DISABLED']` to `true`.
150
147
  #
151
148
  # @option options [required, String] :region
152
149
  # The AWS region to connect to. The configured `:region` is
@@ -379,8 +376,8 @@ module Aws::RDS
379
376
  # `Aws::Telemetry::OTelProvider` for telemetry provider.
380
377
  #
381
378
  # @option options [Aws::TokenProvider] :token_provider
382
- # Your Bearer token used for authentication. This can be an instance of any one of the
383
- # following classes:
379
+ # Your Bearer token used for authentication. This can be any class that includes and implements
380
+ # `Aws::TokenProvider`, or instance of any one of the following classes:
384
381
  #
385
382
  # * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
386
383
  # tokens.
@@ -3969,6 +3966,7 @@ module Aws::RDS
3969
3966
  # resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
3970
3967
  # resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
3971
3968
  # resp.db_cluster.serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
3969
+ # resp.db_cluster.serverless_v2_platform_version #=> String
3972
3970
  # resp.db_cluster.network_type #=> String
3973
3971
  # resp.db_cluster.db_system_id #=> String
3974
3972
  # resp.db_cluster.master_user_secret.secret_arn #=> String
@@ -4988,8 +4986,12 @@ module Aws::RDS
4988
4986
  # set the `AvailabilityZone` parameter if the DB instance is a Multi-AZ
4989
4987
  # deployment.
4990
4988
  #
4991
- # This setting doesn't apply to Amazon Aurora because the DB instance
4992
- # Availability Zones (AZs) are managed by the DB cluster.
4989
+ # This setting doesn't apply to the following DB instances:
4990
+ #
4991
+ # * Amazon Aurora (DB instance Availability Zones (AZs) are managed by
4992
+ # the DB cluster.)
4993
+ #
4994
+ # * RDS Custom
4993
4995
  #
4994
4996
  # @option params [String] :engine_version
4995
4997
  # The version number of the database engine to use.
@@ -9464,6 +9466,7 @@ module Aws::RDS
9464
9466
  # resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
9465
9467
  # resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
9466
9468
  # resp.db_cluster.serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
9469
+ # resp.db_cluster.serverless_v2_platform_version #=> String
9467
9470
  # resp.db_cluster.network_type #=> String
9468
9471
  # resp.db_cluster.db_system_id #=> String
9469
9472
  # resp.db_cluster.master_user_secret.secret_arn #=> String
@@ -12918,6 +12921,7 @@ module Aws::RDS
12918
12921
  # resp.db_clusters[0].serverless_v2_scaling_configuration.min_capacity #=> Float
12919
12922
  # resp.db_clusters[0].serverless_v2_scaling_configuration.max_capacity #=> Float
12920
12923
  # resp.db_clusters[0].serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
12924
+ # resp.db_clusters[0].serverless_v2_platform_version #=> String
12921
12925
  # resp.db_clusters[0].network_type #=> String
12922
12926
  # resp.db_clusters[0].db_system_id #=> String
12923
12927
  # resp.db_clusters[0].master_user_secret.secret_arn #=> String
@@ -18355,6 +18359,7 @@ module Aws::RDS
18355
18359
  # resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
18356
18360
  # resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
18357
18361
  # resp.db_cluster.serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
18362
+ # resp.db_cluster.serverless_v2_platform_version #=> String
18358
18363
  # resp.db_cluster.network_type #=> String
18359
18364
  # resp.db_cluster.db_system_id #=> String
18360
18365
  # resp.db_cluster.master_user_secret.secret_arn #=> String
@@ -20082,6 +20087,7 @@ module Aws::RDS
20082
20087
  # resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
20083
20088
  # resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
20084
20089
  # resp.db_cluster.serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
20090
+ # resp.db_cluster.serverless_v2_platform_version #=> String
20085
20091
  # resp.db_cluster.network_type #=> String
20086
20092
  # resp.db_cluster.db_system_id #=> String
20087
20093
  # resp.db_cluster.master_user_secret.secret_arn #=> String
@@ -23988,6 +23994,7 @@ module Aws::RDS
23988
23994
  # resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
23989
23995
  # resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
23990
23996
  # resp.db_cluster.serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
23997
+ # resp.db_cluster.serverless_v2_platform_version #=> String
23991
23998
  # resp.db_cluster.network_type #=> String
23992
23999
  # resp.db_cluster.db_system_id #=> String
23993
24000
  # resp.db_cluster.master_user_secret.secret_arn #=> String
@@ -24292,6 +24299,7 @@ module Aws::RDS
24292
24299
  # resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
24293
24300
  # resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
24294
24301
  # resp.db_cluster.serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
24302
+ # resp.db_cluster.serverless_v2_platform_version #=> String
24295
24303
  # resp.db_cluster.network_type #=> String
24296
24304
  # resp.db_cluster.db_system_id #=> String
24297
24305
  # resp.db_cluster.master_user_secret.secret_arn #=> String
@@ -25895,6 +25903,7 @@ module Aws::RDS
25895
25903
  # resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
25896
25904
  # resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
25897
25905
  # resp.db_cluster.serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
25906
+ # resp.db_cluster.serverless_v2_platform_version #=> String
25898
25907
  # resp.db_cluster.network_type #=> String
25899
25908
  # resp.db_cluster.db_system_id #=> String
25900
25909
  # resp.db_cluster.master_user_secret.secret_arn #=> String
@@ -26720,6 +26729,7 @@ module Aws::RDS
26720
26729
  # resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
26721
26730
  # resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
26722
26731
  # resp.db_cluster.serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
26732
+ # resp.db_cluster.serverless_v2_platform_version #=> String
26723
26733
  # resp.db_cluster.network_type #=> String
26724
26734
  # resp.db_cluster.db_system_id #=> String
26725
26735
  # resp.db_cluster.master_user_secret.secret_arn #=> String
@@ -27528,6 +27538,7 @@ module Aws::RDS
27528
27538
  # resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
27529
27539
  # resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
27530
27540
  # resp.db_cluster.serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
27541
+ # resp.db_cluster.serverless_v2_platform_version #=> String
27531
27542
  # resp.db_cluster.network_type #=> String
27532
27543
  # resp.db_cluster.db_system_id #=> String
27533
27544
  # resp.db_cluster.master_user_secret.secret_arn #=> String
@@ -30705,6 +30716,7 @@ module Aws::RDS
30705
30716
  # resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
30706
30717
  # resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
30707
30718
  # resp.db_cluster.serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
30719
+ # resp.db_cluster.serverless_v2_platform_version #=> String
30708
30720
  # resp.db_cluster.network_type #=> String
30709
30721
  # resp.db_cluster.db_system_id #=> String
30710
30722
  # resp.db_cluster.master_user_secret.secret_arn #=> String
@@ -31540,6 +31552,7 @@ module Aws::RDS
31540
31552
  # resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
31541
31553
  # resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
31542
31554
  # resp.db_cluster.serverless_v2_scaling_configuration.seconds_until_auto_pause #=> Integer
31555
+ # resp.db_cluster.serverless_v2_platform_version #=> String
31543
31556
  # resp.db_cluster.network_type #=> String
31544
31557
  # resp.db_cluster.db_system_id #=> String
31545
31558
  # resp.db_cluster.master_user_secret.secret_arn #=> String
@@ -32417,7 +32430,7 @@ module Aws::RDS
32417
32430
  tracer: tracer
32418
32431
  )
32419
32432
  context[:gem_name] = 'aws-sdk-rds'
32420
- context[:gem_version] = '1.285.0'
32433
+ context[:gem_version] = '1.287.0'
32421
32434
  Seahorse::Client::Request.new(handlers, context)
32422
32435
  end
32423
32436
 
@@ -1458,6 +1458,7 @@ module Aws::RDS
1458
1458
  DBCluster.add_member(:performance_insights_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "PerformanceInsightsKMSKeyId"))
1459
1459
  DBCluster.add_member(:performance_insights_retention_period, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "PerformanceInsightsRetentionPeriod"))
1460
1460
  DBCluster.add_member(:serverless_v2_scaling_configuration, Shapes::ShapeRef.new(shape: ServerlessV2ScalingConfigurationInfo, location_name: "ServerlessV2ScalingConfiguration"))
1461
+ DBCluster.add_member(:serverless_v2_platform_version, Shapes::ShapeRef.new(shape: String, location_name: "ServerlessV2PlatformVersion"))
1461
1462
  DBCluster.add_member(:network_type, Shapes::ShapeRef.new(shape: String, location_name: "NetworkType"))
1462
1463
  DBCluster.add_member(:db_system_id, Shapes::ShapeRef.new(shape: String, location_name: "DBSystemId"))
1463
1464
  DBCluster.add_member(:master_user_secret, Shapes::ShapeRef.new(shape: MasterUserSecret, location_name: "MasterUserSecret"))
@@ -649,6 +649,18 @@ module Aws::RDS
649
649
  data[:serverless_v2_scaling_configuration]
650
650
  end
651
651
 
652
+ # The version of the Aurora Serverless V2 platform used by the DB
653
+ # cluster. For more information, see [Using Aurora Serverless v2][1] in
654
+ # the *Amazon Aurora User Guide*.
655
+ #
656
+ #
657
+ #
658
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
659
+ # @return [String]
660
+ def serverless_v2_platform_version
661
+ data[:serverless_v2_platform_version]
662
+ end
663
+
652
664
  # The network type of the DB instance.
653
665
  #
654
666
  # The network type is determined by the `DBSubnetGroup` specified for
@@ -1551,8 +1551,12 @@ module Aws::RDS
1551
1551
  # set the `AvailabilityZone` parameter if the DB instance is a Multi-AZ
1552
1552
  # deployment.
1553
1553
  #
1554
- # This setting doesn't apply to Amazon Aurora because the DB instance
1555
- # Availability Zones (AZs) are managed by the DB cluster.
1554
+ # This setting doesn't apply to the following DB instances:
1555
+ #
1556
+ # * Amazon Aurora (DB instance Availability Zones (AZs) are managed by
1557
+ # the DB cluster.)
1558
+ #
1559
+ # * RDS Custom
1556
1560
  # @option options [String] :engine_version
1557
1561
  # The version number of the database engine to use.
1558
1562
  #
@@ -1696,8 +1696,12 @@ module Aws::RDS
1696
1696
  # set the `AvailabilityZone` parameter if the DB instance is a Multi-AZ
1697
1697
  # deployment.
1698
1698
  #
1699
- # This setting doesn't apply to Amazon Aurora because the DB instance
1700
- # Availability Zones (AZs) are managed by the DB cluster.
1699
+ # This setting doesn't apply to the following DB instances:
1700
+ #
1701
+ # * Amazon Aurora (DB instance Availability Zones (AZs) are managed by
1702
+ # the DB cluster.)
1703
+ #
1704
+ # * RDS Custom
1701
1705
  # @option options [String] :engine_version
1702
1706
  # The version number of the database engine to use.
1703
1707
  #
@@ -4012,8 +4012,12 @@ module Aws::RDS
4012
4012
  # can't set the `AvailabilityZone` parameter if the DB instance is a
4013
4013
  # Multi-AZ deployment.
4014
4014
  #
4015
- # This setting doesn't apply to Amazon Aurora because the DB instance
4016
- # Availability Zones (AZs) are managed by the DB cluster.
4015
+ # This setting doesn't apply to the following DB instances:
4016
+ #
4017
+ # * Amazon Aurora (DB instance Availability Zones (AZs) are managed by
4018
+ # the DB cluster.)
4019
+ #
4020
+ # * RDS Custom
4017
4021
  # @return [Boolean]
4018
4022
  #
4019
4023
  # @!attribute [rw] engine_version
@@ -7445,6 +7449,16 @@ module Aws::RDS
7445
7449
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
7446
7450
  # @return [Types::ServerlessV2ScalingConfigurationInfo]
7447
7451
  #
7452
+ # @!attribute [rw] serverless_v2_platform_version
7453
+ # The version of the Aurora Serverless V2 platform used by the DB
7454
+ # cluster. For more information, see [Using Aurora Serverless v2][1]
7455
+ # in the *Amazon Aurora User Guide*.
7456
+ #
7457
+ #
7458
+ #
7459
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
7460
+ # @return [String]
7461
+ #
7448
7462
  # @!attribute [rw] network_type
7449
7463
  # The network type of the DB instance.
7450
7464
  #
@@ -7615,6 +7629,7 @@ module Aws::RDS
7615
7629
  :performance_insights_kms_key_id,
7616
7630
  :performance_insights_retention_period,
7617
7631
  :serverless_v2_scaling_configuration,
7632
+ :serverless_v2_platform_version,
7618
7633
  :network_type,
7619
7634
  :db_system_id,
7620
7635
  :master_user_secret,
@@ -27499,22 +27514,24 @@ module Aws::RDS
27499
27514
  end
27500
27515
 
27501
27516
  # Specifies any Aurora Serverless v2 properties or limits that differ
27502
- # between Aurora engine versions. You can test the values of this
27503
- # attribute when deciding which Aurora version to use in a new or
27504
- # upgraded DB cluster. You can also retrieve the version of an existing
27505
- # DB cluster and check whether that version supports certain Aurora
27506
- # Serverless v2 features before you attempt to use those features.
27517
+ # between Aurora engine versions and platform versions. You can test the
27518
+ # values of this attribute when deciding which Aurora version to use in
27519
+ # a new or upgraded DB cluster. You can also retrieve the version of an
27520
+ # existing DB cluster and check whether that version supports certain
27521
+ # Aurora Serverless v2 features before you attempt to use those
27522
+ # features.
27507
27523
  #
27508
27524
  # @!attribute [rw] min_capacity
27509
- # If the minimum capacity is 0 ACUs, the engine version supports the
27510
- # automatic pause/resume feature of Aurora Serverless v2.
27525
+ # If the minimum capacity is 0 ACUs, the engine version or platform
27526
+ # version supports the automatic pause/resume feature of Aurora
27527
+ # Serverless v2.
27511
27528
  # @return [Float]
27512
27529
  #
27513
27530
  # @!attribute [rw] max_capacity
27514
27531
  # Specifies the upper Aurora Serverless v2 capacity limit for a
27515
- # particular engine version. Depending on the engine version, the
27516
- # maximum capacity for an Aurora Serverless v2 cluster might be `256`
27517
- # or `128`.
27532
+ # particular engine version or platform version. Depending on the
27533
+ # engine version, the maximum capacity for an Aurora Serverless v2
27534
+ # cluster might be `256` or `128`.
27518
27535
  # @return [Float]
27519
27536
  #
27520
27537
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ServerlessV2FeaturesSupport AWS API Documentation
@@ -27551,7 +27568,9 @@ module Aws::RDS
27551
27568
  # in an Aurora Serverless v2 cluster. You can specify ACU values in
27552
27569
  # half-step increments, such as 32, 32.5, 33, and so on. The largest
27553
27570
  # value that you can use is 256 for recent Aurora versions, or 128 for
27554
- # older versions.
27571
+ # older versions. You can check the attributes of your engine version
27572
+ # or platform version to determine the specific maximum capacity
27573
+ # supported.
27555
27574
  # @return [Float]
27556
27575
  #
27557
27576
  # @!attribute [rw] seconds_until_auto_pause
@@ -27596,7 +27615,9 @@ module Aws::RDS
27596
27615
  # in an Aurora Serverless v2 cluster. You can specify ACU values in
27597
27616
  # half-step increments, such as 32, 32.5, 33, and so on. The largest
27598
27617
  # value that you can use is 256 for recent Aurora versions, or 128 for
27599
- # older versions.
27618
+ # older versions. You can check the attributes of your engine version
27619
+ # or platform version to determine the specific maximum capacity
27620
+ # supported.
27600
27621
  # @return [Float]
27601
27622
  #
27602
27623
  # @!attribute [rw] seconds_until_auto_pause
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.285.0'
83
+ GEM_VERSION = '1.287.0'
84
84
 
85
85
  end
86
86
 
data/sig/db_cluster.rbs CHANGED
@@ -231,6 +231,9 @@ module Aws
231
231
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBCluster.html#serverless_v2_scaling_configuration-instance_method
232
232
  def serverless_v2_scaling_configuration: () -> Types::ServerlessV2ScalingConfigurationInfo
233
233
 
234
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBCluster.html#serverless_v2_platform_version-instance_method
235
+ def serverless_v2_platform_version: () -> ::String
236
+
234
237
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBCluster.html#network_type-instance_method
235
238
  def network_type: () -> ::String
236
239
 
data/sig/types.rbs CHANGED
@@ -830,6 +830,7 @@ module Aws::RDS
830
830
  attr_accessor performance_insights_kms_key_id: ::String
831
831
  attr_accessor performance_insights_retention_period: ::Integer
832
832
  attr_accessor serverless_v2_scaling_configuration: Types::ServerlessV2ScalingConfigurationInfo
833
+ attr_accessor serverless_v2_platform_version: ::String
833
834
  attr_accessor network_type: ::String
834
835
  attr_accessor db_system_id: ::String
835
836
  attr_accessor master_user_secret: Types::MasterUserSecret
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.285.0
4
+ version: 1.287.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services