Class: Aws::EC2::Types::MetricDataResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::MetricDataResult
- Defined in:
- gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb
Overview
Contains a single data point from a capacity metrics query, including the dimension values, timestamp, and metric values for that specific combination.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#dimension ⇒ Types::CapacityManagerDimension
The dimension values that identify this specific data point, such as account ID, region, and instance family.
-
#metric_values ⇒ Array<Types::MetricValue>
The metric values and statistics for this data point, containing the actual capacity usage numbers.
-
#timestamp ⇒ Time
The timestamp for this data point, indicating when the capacity usage occurred.
Instance Attribute Details
#dimension ⇒ Types::CapacityManagerDimension
The dimension values that identify this specific data point, such as account ID, region, and instance family.
55202 55203 55204 55205 55206 55207 55208 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 55202 class MetricDataResult < Struct.new( :dimension, :timestamp, :metric_values) SENSITIVE = [] include Aws::Structure end |
#metric_values ⇒ Array<Types::MetricValue>
The metric values and statistics for this data point, containing the actual capacity usage numbers.
55202 55203 55204 55205 55206 55207 55208 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 55202 class MetricDataResult < Struct.new( :dimension, :timestamp, :metric_values) SENSITIVE = [] include Aws::Structure end |
#timestamp ⇒ Time
The timestamp for this data point, indicating when the capacity usage occurred.
55202 55203 55204 55205 55206 55207 55208 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 55202 class MetricDataResult < Struct.new( :dimension, :timestamp, :metric_values) SENSITIVE = [] include Aws::Structure end |