Class: Aws::Pinpoint::Types::SimpleEmailPart
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pinpoint::Types::SimpleEmailPart
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-pinpoint/types.rb
Overview
Note:
When making an API call, you may pass SimpleEmailPart data as a hash:
{
charset: "__string",
data: "__string",
}
Specifies the subject or body of an email message, represented as textual email data and the applicable character set.
Instance Attribute Summary collapse
-
#charset ⇒ String
The applicable character set for the message content.
-
#data ⇒ String
The textual data of the message content.
Instance Attribute Details
#charset ⇒ String
The applicable character set for the message content.
14566 14567 14568 14569 14570 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 14566 class SimpleEmailPart < Struct.new( :charset, :data) include Aws::Structure end |
#data ⇒ String
The textual data of the message content.
14566 14567 14568 14569 14570 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 14566 class SimpleEmailPart < Struct.new( :charset, :data) include Aws::Structure end |