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)


2115
2116
2117
2118
2119
2120
2121
# File 'lib/aws-sdk-sesv2/types.rb', line 2115

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:



2115
2116
2117
2118
2119
2120
2121
# File 'lib/aws-sdk-sesv2/types.rb', line 2115

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)


2115
2116
2117
2118
2119
2120
2121
# File 'lib/aws-sdk-sesv2/types.rb', line 2115

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