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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-sesv2/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)


2139
2140
2141
2142
2143
2144
2145
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 2139

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:



2139
2140
2141
2142
2143
2144
2145
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 2139

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)


2139
2140
2141
2142
2143
2144
2145
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 2139

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