Class: Aws::SESV2::Types::EmailInsights
- Inherits:
-
Struct
- Object
- Struct
- Aws::SESV2::Types::EmailInsights
- 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
-
#destination ⇒ String
The recipient of the email.
-
#events ⇒ Array<Types::InsightsEvent>
A list of events associated with the sent email.
-
#isp ⇒ String
The recipient’s ISP (e.g., ‘Gmail`, `Yahoo`, etc.).
Instance Attribute Details
#destination ⇒ String
The recipient of the email.
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 |
#events ⇒ Array<Types::InsightsEvent>
A list of events associated with the sent email.
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 |
#isp ⇒ String
The recipient’s ISP (e.g., ‘Gmail`, `Yahoo`, etc.).
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 |