Class: Aws::SES::Types::Message
- Inherits:
-
Struct
- Object
- Struct
- Aws::SES::Types::Message
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-ses/types.rb
Overview
Represents the message to be sent, composed of a subject and a body.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#body ⇒ Types::Body
The message body.
-
#subject ⇒ Types::Content
The subject of the message: A short summary of the content, which appears in the recipient’s inbox.
Instance Attribute Details
#body ⇒ Types::Body
The message body.
2800 2801 2802 2803 2804 2805 |
# File 'lib/aws-sdk-ses/types.rb', line 2800 class Message < Struct.new( :subject, :body) SENSITIVE = [] include Aws::Structure end |
#subject ⇒ Types::Content
The subject of the message: A short summary of the content, which appears in the recipient’s inbox.
2800 2801 2802 2803 2804 2805 |
# File 'lib/aws-sdk-ses/types.rb', line 2800 class Message < Struct.new( :subject, :body) SENSITIVE = [] include Aws::Structure end |