Class: Aws::SESV2::Types::ReviewDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::SESV2::Types::ReviewDetails
- Defined in:
- gems/aws-sdk-sesv2/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).
7636 7637 7638 7639 7640 7641 |
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 7636 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.
7636 7637 7638 7639 7640 7641 |
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 7636 class ReviewDetails < Struct.new( :status, :case_id) SENSITIVE = [] include Aws::Structure end |