Class: Aws::AutoScalingPlans::Types::MetricDimension
- Inherits:
-
Struct
- Object
- Struct
- Aws::AutoScalingPlans::Types::MetricDimension
- Defined in:
- gems/aws-sdk-autoscalingplans/lib/aws-sdk-autoscalingplans/types.rb
Overview
Note:
When making an API call, you may pass MetricDimension data as a hash:
{
name: "MetricDimensionName", # required
value: "MetricDimensionValue", # required
}
Represents a dimension for a customized 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.
697 698 699 700 701 702 |
# File 'gems/aws-sdk-autoscalingplans/lib/aws-sdk-autoscalingplans/types.rb', line 697 class MetricDimension < Struct.new( :name, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The value of the dimension.
697 698 699 700 701 702 |
# File 'gems/aws-sdk-autoscalingplans/lib/aws-sdk-autoscalingplans/types.rb', line 697 class MetricDimension < Struct.new( :name, :value) SENSITIVE = [] include Aws::Structure end |