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_minutes ⇒ Integer

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

Returns:

  • (Integer)


8607
8608
8609
8610
8611
8612
# File 'gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb', line 8607

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

#scale_percentage ⇒ Integer

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

Returns:

  • (Integer)


8607
8608
8609
8610
8611
8612
# File 'gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb', line 8607

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