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).
6258 6259 6260 6261 6262 6263 |
# File 'lib/aws-sdk-sesv2/types.rb', line 6258 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.
6258 6259 6260 6261 6262 6263 |
# File 'lib/aws-sdk-sesv2/types.rb', line 6258 class ReviewDetails < Struct.new( :status, :case_id) SENSITIVE = [] include Aws::Structure end |