Class: Aws::RDS::Types::ServerlessV2ScalingConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::RDS::Types::ServerlessV2ScalingConfiguration
- Defined in:
- gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb
Overview
Contains the scaling configuration of an Aurora Serverless v2 DB cluster.
For more information, see Using Amazon Aurora Serverless v2 in the Amazon Aurora User Guide.
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.
-
#seconds_until_auto_pause ⇒ Integer
Specifies the number of seconds an Aurora Serverless v2 DB instance must be idle before Aurora attempts to automatically pause it.
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 32, 32.5, 33, and so on. The largest value that you can use is 256 for recent Aurora versions, or 128 for older versions. You can check the attributes of your engine version or platform version to determine the specific maximum capacity supported.
27797 27798 27799 27800 27801 27802 27803 |
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 27797 class ServerlessV2ScalingConfiguration < Struct.new( :min_capacity, :max_capacity, :seconds_until_auto_pause) 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. For Aurora versions that support the Aurora Serverless v2 auto-pause feature, the smallest value that you can use is 0. For versions that don't support Aurora Serverless v2 auto-pause, the smallest value that you can use is 0.5.
27797 27798 27799 27800 27801 27802 27803 |
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 27797 class ServerlessV2ScalingConfiguration < Struct.new( :min_capacity, :max_capacity, :seconds_until_auto_pause) SENSITIVE = [] include Aws::Structure end |
#seconds_until_auto_pause ⇒ Integer
Specifies the number of seconds an Aurora Serverless v2 DB instance must be idle before Aurora attempts to automatically pause it.
Specify a value between 300 seconds (five minutes) and 86,400 seconds (one day). The default is 300 seconds.
27797 27798 27799 27800 27801 27802 27803 |
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 27797 class ServerlessV2ScalingConfiguration < Struct.new( :min_capacity, :max_capacity, :seconds_until_auto_pause) SENSITIVE = [] include Aws::Structure end |