Class: Aws::RDS::Types::ServerlessV2ScalingConfigurationInfo
- Inherits:
-
Struct
- Object
- Struct
- Aws::RDS::Types::ServerlessV2ScalingConfigurationInfo
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rds/types.rb
Overview
The scaling configuration for an Aurora Serverless v2 DB cluster.
For more information, see [Using Amazon Aurora Serverless v2] in the *Amazon Aurora User Guide*.
[1]: docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_capacity ⇒ Float
The maximum number of Aurora capacity units (ACUs) for a DB instance in an Aurora Serverless v2 cluster.
-
#min_capacity ⇒ Float
The minimum number of Aurora capacity units (ACUs) for a DB instance in an Aurora Serverless v2 cluster.
Instance Attribute Details
#max_capacity ⇒ Float
The maximum number of Aurora capacity units (ACUs) for a DB instance in an Aurora Serverless v2 cluster. You can specify ACU values in half-step increments, such as 40, 40.5, 41, and so on. The largest value that you can use is 128.
26569 26570 26571 26572 26573 26574 |
# File 'lib/aws-sdk-rds/types.rb', line 26569 class ServerlessV2ScalingConfigurationInfo < Struct.new( :min_capacity, :max_capacity) SENSITIVE = [] include Aws::Structure end |
#min_capacity ⇒ Float
The minimum number of Aurora capacity units (ACUs) for a DB instance in an Aurora Serverless v2 cluster. You can specify ACU values in half-step increments, such as 8, 8.5, 9, and so on. The smallest value that you can use is 0.5.
26569 26570 26571 26572 26573 26574 |
# File 'lib/aws-sdk-rds/types.rb', line 26569 class ServerlessV2ScalingConfigurationInfo < Struct.new( :min_capacity, :max_capacity) SENSITIVE = [] include Aws::Structure end |