Class: Aws::SESV2::Types::Bounce
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SESV2::Types::Bounce
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-sesv2/types.rb
 
Overview
Information about a ‘Bounce` event.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #bounce_sub_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The subtype of the bounce, as determined by SES.
 - 
  
    
      #bounce_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The type of the bounce, as determined by SES.
 - 
  
    
      #diagnostic_code  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The status code issued by the reporting Message Transfer Authority (MTA).
 
Instance Attribute Details
#bounce_sub_type ⇒ String
The subtype of the bounce, as determined by SES.
      271 272 273 274 275 276 277  | 
    
      # File 'lib/aws-sdk-sesv2/types.rb', line 271 class Bounce < Struct.new( :bounce_type, :bounce_sub_type, :diagnostic_code) SENSITIVE = [] include Aws::Structure end  | 
  
#bounce_type ⇒ String
The type of the bounce, as determined by SES. Can be one of ‘UNDETERMINED`, `TRANSIENT`, or `PERMANENT`
      271 272 273 274 275 276 277  | 
    
      # File 'lib/aws-sdk-sesv2/types.rb', line 271 class Bounce < Struct.new( :bounce_type, :bounce_sub_type, :diagnostic_code) SENSITIVE = [] include Aws::Structure end  | 
  
#diagnostic_code ⇒ String
The status code issued by the reporting Message Transfer Authority (MTA). This field only appears if a delivery status notification (DSN) was attached to the bounce and the ‘Diagnostic-Code` was provided in the DSN.
      271 272 273 274 275 276 277  | 
    
      # File 'lib/aws-sdk-sesv2/types.rb', line 271 class Bounce < Struct.new( :bounce_type, :bounce_sub_type, :diagnostic_code) SENSITIVE = [] include Aws::Structure end  |