Class: Aws::SESV2::Types::SuppressedDestinationSummary
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SESV2::Types::SuppressedDestinationSummary
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-sesv2/types.rb
 
Overview
A summary that describes the suppressed email address.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #email_address  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The email address that’s on the suppression list for your account.
 - 
  
    
      #last_update_time  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The date and time when the suppressed destination was last updated, shown in Unix time format.
 - 
  
    
      #reason  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The reason that the address was added to the suppression list for your account.
 
Instance Attribute Details
#email_address ⇒ String
The email address that’s on the suppression list for your account.
      6718 6719 6720 6721 6722 6723 6724  | 
    
      # File 'lib/aws-sdk-sesv2/types.rb', line 6718 class SuppressedDestinationSummary < Struct.new( :email_address, :reason, :last_update_time) SENSITIVE = [] include Aws::Structure end  | 
  
#last_update_time ⇒ Time
The date and time when the suppressed destination was last updated, shown in Unix time format.
      6718 6719 6720 6721 6722 6723 6724  | 
    
      # File 'lib/aws-sdk-sesv2/types.rb', line 6718 class SuppressedDestinationSummary < Struct.new( :email_address, :reason, :last_update_time) SENSITIVE = [] include Aws::Structure end  | 
  
#reason ⇒ String
The reason that the address was added to the suppression list for your account.
      6718 6719 6720 6721 6722 6723 6724  | 
    
      # File 'lib/aws-sdk-sesv2/types.rb', line 6718 class SuppressedDestinationSummary < Struct.new( :email_address, :reason, :last_update_time) SENSITIVE = [] include Aws::Structure end  |