Class: Aws::ElastiCache::Types::ScaleConfig

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb

Overview

Configuration settings for horizontal or vertical scaling operations on Memcached clusters.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#scale_interval_minutesInteger

The time interval in seconds between scaling operations when performing gradual scaling for a Memcached cluster.

Returns:

  • (Integer)


8544
8545
8546
8547
8548
8549
# File 'gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb', line 8544

class ScaleConfig < Struct.new(
  :scale_percentage,
  :scale_interval_minutes)
  SENSITIVE = []
  include Aws::Structure
end

#scale_percentageInteger

The percentage by which to scale the Memcached cluster, either horizontally by adding nodes or vertically by increasing resources.

Returns:

  • (Integer)


8544
8545
8546
8547
8548
8549
# File 'gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb', line 8544

class ScaleConfig < Struct.new(
  :scale_percentage,
  :scale_interval_minutes)
  SENSITIVE = []
  include Aws::Structure
end