Class: Aws::AutoScaling::Types::EnabledMetric
- Inherits:
-
Struct
- Object
- Struct
- Aws::AutoScaling::Types::EnabledMetric
- 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
-
#granularity ⇒ String
The granularity of the metric.
-
#metric ⇒ String
One of the following metrics:.
Instance Attribute Details
#granularity ⇒ String
The granularity of the metric. The only valid value is ‘1Minute`.
2845 2846 2847 2848 2849 2850 |
# File 'lib/aws-sdk-autoscaling/types.rb', line 2845 class EnabledMetric < Struct.new( :metric, :granularity) SENSITIVE = [] include Aws::Structure end |
#metric ⇒ String
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 [Amazon CloudWatch metrics for Amazon EC2 Auto Scaling] in the *Amazon EC2 Auto Scaling User Guide*.
[1]: docs.aws.amazon.com/autoscaling/ec2/userguide/ec2-auto-scaling-metrics.html
2845 2846 2847 2848 2849 2850 |
# File 'lib/aws-sdk-autoscaling/types.rb', line 2845 class EnabledMetric < Struct.new( :metric, :granularity) SENSITIVE = [] include Aws::Structure end |