Class: Aws::SESV2::Types::ReviewDetails

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#case_idString

The associated support center case ID (if any).

Returns:

  • (String)


6147
6148
6149
6150
6151
6152
# File 'lib/aws-sdk-sesv2/types.rb', line 6147

class ReviewDetails < Struct.new(
  :status,
  :case_id)
  SENSITIVE = []
  include Aws::Structure
end

#statusString

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.

Returns:

  • (String)


6147
6148
6149
6150
6151
6152
# File 'lib/aws-sdk-sesv2/types.rb', line 6147

class ReviewDetails < Struct.new(
  :status,
  :case_id)
  SENSITIVE = []
  include Aws::Structure
end