Class: Aws::SESV2::Types::MetricDataError
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SESV2::Types::MetricDataError
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-sesv2/types.rb
 
Overview
An error corresponding to the unsuccessful processing of a single metric data query.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #code  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The query error code.
 - 
  
    
      #id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The query identifier.
 - 
  
    
      #message  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The error message associated with the current query error.
 
Instance Attribute Details
#code ⇒ String
The query error code. Can be one of:
- 
‘INTERNAL_FAILURE` – Amazon SES has failed to process one of the queries.
 - 
‘ACCESS_DENIED` – You have insufficient access to retrieve metrics based on the given query.
 
      5126 5127 5128 5129 5130 5131 5132  | 
    
      # File 'lib/aws-sdk-sesv2/types.rb', line 5126 class MetricDataError < Struct.new( :id, :code, :message) SENSITIVE = [] include Aws::Structure end  | 
  
#id ⇒ String
The query identifier.
      5126 5127 5128 5129 5130 5131 5132  | 
    
      # File 'lib/aws-sdk-sesv2/types.rb', line 5126 class MetricDataError < Struct.new( :id, :code, :message) SENSITIVE = [] include Aws::Structure end  | 
  
#message ⇒ String
The error message associated with the current query error.
      5126 5127 5128 5129 5130 5131 5132  | 
    
      # File 'lib/aws-sdk-sesv2/types.rb', line 5126 class MetricDataError < Struct.new( :id, :code, :message) SENSITIVE = [] include Aws::Structure end  |