Class: Aws::SESV2::Types::EmailInsights

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-sesv2/types.rb

Overview

An email’s insights contain metadata and delivery information about a specific email.

Constant Summary collapse

SENSITIVE =
[:destination]

Instance Attribute Summary collapse

Instance Attribute Details

#destinationString

The recipient of the email.

Returns:

  • (String)


2147
2148
2149
2150
2151
2152
2153
# File 'lib/aws-sdk-sesv2/types.rb', line 2147

class EmailInsights < Struct.new(
  :destination,
  :isp,
  :events)
  SENSITIVE = [:destination]
  include Aws::Structure
end

#eventsArray<Types::InsightsEvent>

A list of events associated with the sent email.

Returns:



2147
2148
2149
2150
2151
2152
2153
# File 'lib/aws-sdk-sesv2/types.rb', line 2147

class EmailInsights < Struct.new(
  :destination,
  :isp,
  :events)
  SENSITIVE = [:destination]
  include Aws::Structure
end

#ispString

The recipient’s ISP (e.g., ‘Gmail`, `Yahoo`, etc.).

Returns:

  • (String)


2147
2148
2149
2150
2151
2152
2153
# File 'lib/aws-sdk-sesv2/types.rb', line 2147

class EmailInsights < Struct.new(
  :destination,
  :isp,
  :events)
  SENSITIVE = [:destination]
  include Aws::Structure
end