Class: Aws::RDS::Types::ServerlessV2ScalingConfiguration

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#max_capacityFloat

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.

Returns:

  • (Float)


26470
26471
26472
26473
26474
26475
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 26470

class ServerlessV2ScalingConfiguration < Struct.new(
  :min_capacity,
  :max_capacity)
  SENSITIVE = []
  include Aws::Structure
end

#min_capacityFloat

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.

Returns:

  • (Float)


26470
26471
26472
26473
26474
26475
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 26470

class ServerlessV2ScalingConfiguration < Struct.new(
  :min_capacity,
  :max_capacity)
  SENSITIVE = []
  include Aws::Structure
end