Class: Aws::CodeGuruProfiler::Types::BatchGetFrameMetricDataResponse
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::CodeGuruProfiler::Types::BatchGetFrameMetricDataResponse
 
- Defined in:
- gems/aws-sdk-codeguruprofiler/lib/aws-sdk-codeguruprofiler/types.rb
Overview
The structure representing the BatchGetFrameMetricDataResponse.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #end_time  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The end time of the time period for the returned time series values. 
- 
  
    
      #end_times  ⇒ Array<Types::TimestampStructure> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    List of instances, or time steps, in the time series. 
- 
  
    
      #frame_metric_data  ⇒ Array<Types::FrameMetricDatum> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Details of the metrics to request a time series of values. 
- 
  
    
      #resolution  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Resolution or granularity of the profile data used to generate the time series. 
- 
  
    
      #start_time  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The start time of the time period for the returned time series values. 
- 
  
    
      #unprocessed_end_times  ⇒ Hash<String,Array<Types::TimestampStructure>> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    List of instances which remained unprocessed. 
Instance Attribute Details
#end_time ⇒ Time
The end time of the time period for the returned time series values. This is specified using the ISO 8601 format. For example, 2020-06-01T13:15:02.001Z represents 1 millisecond past June 1, 2020 1:15:02 PM UTC.
| 338 339 340 341 342 343 344 345 346 347 | # File 'gems/aws-sdk-codeguruprofiler/lib/aws-sdk-codeguruprofiler/types.rb', line 338 class BatchGetFrameMetricDataResponse < Struct.new( :end_time, :end_times, :frame_metric_data, :resolution, :start_time, :unprocessed_end_times) SENSITIVE = [] include Aws::Structure end | 
#end_times ⇒ Array<Types::TimestampStructure>
List of instances, or time steps, in the time series. For example,
if the period is one day (PT24H)), and the resolution is five
minutes (PT5M), then there are 288 endTimes in the list that are
each five minutes appart.
| 338 339 340 341 342 343 344 345 346 347 | # File 'gems/aws-sdk-codeguruprofiler/lib/aws-sdk-codeguruprofiler/types.rb', line 338 class BatchGetFrameMetricDataResponse < Struct.new( :end_time, :end_times, :frame_metric_data, :resolution, :start_time, :unprocessed_end_times) SENSITIVE = [] include Aws::Structure end | 
#frame_metric_data ⇒ Array<Types::FrameMetricDatum>
Details of the metrics to request a time series of values. The metric includes the name of the frame, the aggregation type to calculate the metric value for the frame, and the thread states to use to get the count for the metric value of the frame.
| 338 339 340 341 342 343 344 345 346 347 | # File 'gems/aws-sdk-codeguruprofiler/lib/aws-sdk-codeguruprofiler/types.rb', line 338 class BatchGetFrameMetricDataResponse < Struct.new( :end_time, :end_times, :frame_metric_data, :resolution, :start_time, :unprocessed_end_times) SENSITIVE = [] include Aws::Structure end | 
#resolution ⇒ String
Resolution or granularity of the profile data used to generate the time series. This is the value used to jump through time steps in a time series. There are 3 valid values.
- P1D— 1 day
- PT1H— 1 hour
- PT5M— 5 minutes
| 338 339 340 341 342 343 344 345 346 347 | # File 'gems/aws-sdk-codeguruprofiler/lib/aws-sdk-codeguruprofiler/types.rb', line 338 class BatchGetFrameMetricDataResponse < Struct.new( :end_time, :end_times, :frame_metric_data, :resolution, :start_time, :unprocessed_end_times) SENSITIVE = [] include Aws::Structure end | 
#start_time ⇒ Time
The start time of the time period for the returned time series values. This is specified using the ISO 8601 format. For example, 2020-06-01T13:15:02.001Z represents 1 millisecond past June 1, 2020 1:15:02 PM UTC.
| 338 339 340 341 342 343 344 345 346 347 | # File 'gems/aws-sdk-codeguruprofiler/lib/aws-sdk-codeguruprofiler/types.rb', line 338 class BatchGetFrameMetricDataResponse < Struct.new( :end_time, :end_times, :frame_metric_data, :resolution, :start_time, :unprocessed_end_times) SENSITIVE = [] include Aws::Structure end | 
#unprocessed_end_times ⇒ Hash<String,Array<Types::TimestampStructure>>
List of instances which remained unprocessed. This will create a missing time step in the list of end times.
| 338 339 340 341 342 343 344 345 346 347 | # File 'gems/aws-sdk-codeguruprofiler/lib/aws-sdk-codeguruprofiler/types.rb', line 338 class BatchGetFrameMetricDataResponse < Struct.new( :end_time, :end_times, :frame_metric_data, :resolution, :start_time, :unprocessed_end_times) SENSITIVE = [] include Aws::Structure end |