Class: Aws::EC2::Types::MetricValue
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::MetricValue
- Defined in:
- gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb
Overview
Represents a single metric value with its associated statistic, such as the sum or average of unused capacity hours.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#metric ⇒ String
The name of the metric.
-
#value ⇒ Float
The numerical value of the metric for the specified statistic and time period.
Instance Attribute Details
#metric ⇒ String
The name of the metric.
55247 55248 55249 55250 55251 55252 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 55247 class MetricValue < Struct.new( :metric, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ Float
The numerical value of the metric for the specified statistic and time period.
55247 55248 55249 55250 55251 55252 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 55247 class MetricValue < Struct.new( :metric, :value) SENSITIVE = [] include Aws::Structure end |