Class: Aws::RDS::Types::ServerlessV2FeaturesSupport
- Inherits:
-
Struct
- Object
- Struct
- Aws::RDS::Types::ServerlessV2FeaturesSupport
- Defined in:
- gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb
Overview
Specifies any Aurora Serverless v2 properties or limits that differ between Aurora engine versions and platform versions. You can test the values of this attribute when deciding which Aurora version to use in a new or upgraded DB cluster. You can also retrieve the version of an existing DB cluster and check whether that version supports certain Aurora Serverless v2 features before you attempt to use those features.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_capacity ⇒ Float
Specifies the upper Aurora Serverless v2 capacity limit for a particular engine version or platform version.
-
#min_capacity ⇒ Float
If the minimum capacity is 0 ACUs, the engine version or platform version supports the automatic pause/resume feature of Aurora Serverless v2.
Instance Attribute Details
#max_capacity ⇒ Float
Specifies the upper Aurora Serverless v2 capacity limit for a
particular engine version or platform version. Depending on the
engine version, the maximum capacity for an Aurora Serverless v2
cluster might be 256
or 128
.
27750 27751 27752 27753 27754 27755 |
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 27750 class ServerlessV2FeaturesSupport < Struct.new( :min_capacity, :max_capacity) SENSITIVE = [] include Aws::Structure end |
#min_capacity ⇒ Float
If the minimum capacity is 0 ACUs, the engine version or platform version supports the automatic pause/resume feature of Aurora Serverless v2.
27750 27751 27752 27753 27754 27755 |
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 27750 class ServerlessV2FeaturesSupport < Struct.new( :min_capacity, :max_capacity) SENSITIVE = [] include Aws::Structure end |