Class: Aws::RDS::Types::ScalingConfigurationInfo

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-rds/types.rb

Overview

Shows the scaling configuration for an Aurora DB cluster in ‘serverless` DB engine mode.

For more information, see [Using Amazon Aurora Serverless] in the *Amazon Aurora User Guide*.

[1]: docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless.html

Instance Attribute Summary collapse

Instance Attribute Details

#auto_pauseBoolean

A value that indicates whether automatic pause is allowed for the Aurora DB cluster in ‘serverless` DB engine mode.

Returns:

  • (Boolean)


15172
15173
15174
15175
15176
15177
15178
# File 'lib/aws-sdk-rds/types.rb', line 15172

class ScalingConfigurationInfo < Struct.new(
  :min_capacity,
  :max_capacity,
  :auto_pause,
  :seconds_until_auto_pause)
  include Aws::Structure
end

#max_capacityInteger

The maximum capacity for an Aurora DB cluster in ‘serverless` DB engine mode.

Returns:

  • (Integer)


15172
15173
15174
15175
15176
15177
15178
# File 'lib/aws-sdk-rds/types.rb', line 15172

class ScalingConfigurationInfo < Struct.new(
  :min_capacity,
  :max_capacity,
  :auto_pause,
  :seconds_until_auto_pause)
  include Aws::Structure
end

#min_capacityInteger

The maximum capacity for the Aurora DB cluster in ‘serverless` DB engine mode.

Returns:

  • (Integer)


15172
15173
15174
15175
15176
15177
15178
# File 'lib/aws-sdk-rds/types.rb', line 15172

class ScalingConfigurationInfo < Struct.new(
  :min_capacity,
  :max_capacity,
  :auto_pause,
  :seconds_until_auto_pause)
  include Aws::Structure
end

#seconds_until_auto_pauseInteger

The remaining amount of time, in seconds, before the Aurora DB cluster in ‘serverless` mode is paused. A DB cluster can be paused only when it’s idle (it has no connections).

Returns:

  • (Integer)


15172
15173
15174
15175
15176
15177
15178
# File 'lib/aws-sdk-rds/types.rb', line 15172

class ScalingConfigurationInfo < Struct.new(
  :min_capacity,
  :max_capacity,
  :auto_pause,
  :seconds_until_auto_pause)
  include Aws::Structure
end