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.
| 56525 56526 56527 56528 56529 56530 56531 | # File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 56525 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.
| 56525 56526 56527 56528 56529 56530 56531 | # File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 56525 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.
| 56525 56526 56527 56528 56529 56530 56531 | # File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 56525 class MetricDataResult < Struct.new( :dimension, :timestamp, :metric_values) SENSITIVE = [] include Aws::Structure end |