Class: Aws::SESV2::Types::StatusRecord

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

Instance Attribute Details

#causeString

A description of the reason for the current status, or null if no specific cause is available.

Returns:

  • (String)


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_timestampTime

The timestamp when this status was last updated.

Returns:

  • (Time)


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

#statusString

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.

Returns:

  • (String)


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