Class: Aws::AutoScaling::Types::EnabledMetric

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

Overview

Describes an enabled Auto Scaling group metric.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#granularityString

The granularity of the metric. The only valid value is ‘1Minute`.

Returns:

  • (String)


2849
2850
2851
2852
2853
2854
# File 'lib/aws-sdk-autoscaling/types.rb', line 2849

class EnabledMetric < Struct.new(
  :metric,
  :granularity)
  SENSITIVE = []
  include Aws::Structure
end

#metricString

One of the following metrics:

  • ‘GroupMinSize`

  • ‘GroupMaxSize`

  • ‘GroupDesiredCapacity`

  • ‘GroupInServiceInstances`

  • ‘GroupPendingInstances`

  • ‘GroupStandbyInstances`

  • ‘GroupTerminatingInstances`

  • ‘GroupTotalInstances`

  • ‘GroupInServiceCapacity`

  • ‘GroupPendingCapacity`

  • ‘GroupStandbyCapacity`

  • ‘GroupTerminatingCapacity`

  • ‘GroupTotalCapacity`

  • ‘WarmPoolDesiredCapacity`

  • ‘WarmPoolWarmedCapacity`

  • ‘WarmPoolPendingCapacity`

  • ‘WarmPoolTerminatingCapacity`

  • ‘WarmPoolTotalCapacity`

  • ‘GroupAndWarmPoolDesiredCapacity`

  • ‘GroupAndWarmPoolTotalCapacity`

For more information, see [Auto Scaling group metrics] in the *Amazon EC2 Auto Scaling User Guide*.

[1]: docs.aws.amazon.com/autoscaling/ec2/userguide/ec2-auto-scaling-cloudwatch-monitoring.html#as-group-metrics

Returns:

  • (String)


2849
2850
2851
2852
2853
2854
# File 'lib/aws-sdk-autoscaling/types.rb', line 2849

class EnabledMetric < Struct.new(
  :metric,
  :granularity)
  SENSITIVE = []
  include Aws::Structure
end