Class: Aws::EC2::Types::MetricDataResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::MetricDataResult
- Includes:
- Structure
- Defined in:
- 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.
58867 58868 58869 58870 58871 58872 58873 |
# File 'lib/aws-sdk-ec2/types.rb', line 58867 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.
58867 58868 58869 58870 58871 58872 58873 |
# File 'lib/aws-sdk-ec2/types.rb', line 58867 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.
58867 58868 58869 58870 58871 58872 58873 |
# File 'lib/aws-sdk-ec2/types.rb', line 58867 class MetricDataResult < Struct.new( :dimension, :timestamp, :metric_values) SENSITIVE = [] include Aws::Structure end |