Class: Aws::SESV2::Types::VerificationInfo
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SESV2::Types::VerificationInfo
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-sesv2/types.rb
 
Overview
An object that contains additional information about the verification status for the identity.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #error_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Provides the reason for the failure describing why Amazon SES was not able to successfully verify the identity.
 - 
  
    
      #last_checked_timestamp  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The last time a verification attempt was made for this identity.
 - 
  
    
      #last_success_timestamp  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The last time a successful verification was made for this identity.
 - 
  
    
      #soa_record  ⇒ Types::SOARecord 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
An object that contains information about the start of authority (SOA) record associated with the identity.
 
Instance Attribute Details
#error_type ⇒ String
Provides the reason for the failure describing why Amazon SES was not able to successfully verify the identity. Below are the possible values:
- 
‘INVALID_VALUE` – Amazon SES was able to find the record, but the value contained within the record was invalid. Ensure you have published the correct values for the record.
 - 
‘TYPE_NOT_FOUND` – The queried hostname exists but does not have the requested type of DNS record. Ensure that you have published the correct type of DNS record.
 - 
‘HOST_NOT_FOUND` – The queried hostname does not exist or was not reachable at the time of the request. Ensure that you have published the required DNS record(s).
 - 
‘SERVICE_ERROR` – A temporary issue is preventing Amazon SES from determining the verification status of the domain.
 - 
‘DNS_SERVER_ERROR` – The DNS server encountered an issue and was unable to complete the request.
 
      7421 7422 7423 7424 7425 7426 7427 7428  | 
    
      # File 'lib/aws-sdk-sesv2/types.rb', line 7421 class VerificationInfo < Struct.new( :last_checked_timestamp, :last_success_timestamp, :error_type, :soa_record) SENSITIVE = [] include Aws::Structure end  | 
  
#last_checked_timestamp ⇒ Time
The last time a verification attempt was made for this identity.
      7421 7422 7423 7424 7425 7426 7427 7428  | 
    
      # File 'lib/aws-sdk-sesv2/types.rb', line 7421 class VerificationInfo < Struct.new( :last_checked_timestamp, :last_success_timestamp, :error_type, :soa_record) SENSITIVE = [] include Aws::Structure end  | 
  
#last_success_timestamp ⇒ Time
The last time a successful verification was made for this identity.
      7421 7422 7423 7424 7425 7426 7427 7428  | 
    
      # File 'lib/aws-sdk-sesv2/types.rb', line 7421 class VerificationInfo < Struct.new( :last_checked_timestamp, :last_success_timestamp, :error_type, :soa_record) SENSITIVE = [] include Aws::Structure end  | 
  
#soa_record ⇒ Types::SOARecord
An object that contains information about the start of authority (SOA) record associated with the identity.
      7421 7422 7423 7424 7425 7426 7427 7428  | 
    
      # File 'lib/aws-sdk-sesv2/types.rb', line 7421 class VerificationInfo < Struct.new( :last_checked_timestamp, :last_success_timestamp, :error_type, :soa_record) SENSITIVE = [] include Aws::Structure end  |