Class: Aws::AutoScaling::Types::MetricDimension
- Inherits:
-
Struct
- Object
- Struct
- Aws::AutoScaling::Types::MetricDimension
- Defined in:
- gems/aws-sdk-autoscaling/lib/aws-sdk-autoscaling/types.rb
Overview
Note:
When making an API call, you may pass MetricDimension data as a hash:
{
name: "MetricDimensionName", # required
value: "MetricDimensionValue", # required
}
Describes the dimension of a metric.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the dimension.
-
#value ⇒ String
The value of the dimension.
Instance Attribute Details
#name ⇒ String
The name of the dimension.
5673 5674 5675 5676 5677 5678 |
# File 'gems/aws-sdk-autoscaling/lib/aws-sdk-autoscaling/types.rb', line 5673 class MetricDimension < Struct.new( :name, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The value of the dimension.
5673 5674 5675 5676 5677 5678 |
# File 'gems/aws-sdk-autoscaling/lib/aws-sdk-autoscaling/types.rb', line 5673 class MetricDimension < Struct.new( :name, :value) SENSITIVE = [] include Aws::Structure end |