Class: Aws::SESV2::Types::StatusRecord
- Inherits:
-
Struct
- Object
- Struct
- Aws::SESV2::Types::StatusRecord
- Defined in:
- gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb
Overview
An object that contains status information for a reputation entity, including the current status, cause description, and timestamp.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cause ⇒ String
A description of the reason for the current status, or null if no specific cause is available.
-
#last_updated_timestamp ⇒ Time
The timestamp when this status was last updated.
-
#status ⇒ String
The current sending status.
Instance Attribute Details
#cause ⇒ String
A description of the reason for the current status, or null if no specific cause is available.
7926 7927 7928 7929 7930 7931 7932 |
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 7926 class StatusRecord < Struct.new( :status, :cause, :last_updated_timestamp) SENSITIVE = [] include Aws::Structure end |
#last_updated_timestamp ⇒ Time
The timestamp when this status was last updated.
7926 7927 7928 7929 7930 7931 7932 |
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 7926 class StatusRecord < Struct.new( :status, :cause, :last_updated_timestamp) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The current sending status. This can be one of the following:
ENABLED
– Sending is allowed.DISABLED
– Sending is prevented.REINSTATED
– Sending is allowed even with active reputation findings.
7926 7927 7928 7929 7930 7931 7932 |
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 7926 class StatusRecord < Struct.new( :status, :cause, :last_updated_timestamp) SENSITIVE = [] include Aws::Structure end |