Class: Aws::SESV2::Types::ReviewDetails
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SESV2::Types::ReviewDetails
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-sesv2/types.rb
 
Overview
An object that contains information about your account details review.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #case_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The associated support center case ID (if any).
 - 
  
    
      #status  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The status of the latest review of your account.
 
Instance Attribute Details
#case_id ⇒ String
The associated support center case ID (if any).
      6242 6243 6244 6245 6246 6247  | 
    
      # File 'lib/aws-sdk-sesv2/types.rb', line 6242 class ReviewDetails < Struct.new( :status, :case_id) SENSITIVE = [] include Aws::Structure end  | 
  
#status ⇒ String
The status of the latest review of your account. The status can be one of the following:
- 
‘PENDING` – We have received your appeal and are in the process of reviewing it.
 - 
‘GRANTED` – Your appeal has been reviewed and your production access has been granted.
 - 
‘DENIED` – Your appeal has been reviewed and your production access has been denied.
 - 
‘FAILED` – An internal error occurred and we didn’t receive your appeal. You can submit your appeal again.
 
      6242 6243 6244 6245 6246 6247  | 
    
      # File 'lib/aws-sdk-sesv2/types.rb', line 6242 class ReviewDetails < Struct.new( :status, :case_id) SENSITIVE = [] include Aws::Structure end  |