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

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

Instance Attribute Details

#case_idString

The associated support center case ID (if any).

Returns:

  • (String)


6177
6178
6179
6180
6181
6182
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 6177

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)


6177
6178
6179
6180
6181
6182
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 6177

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