Class: Aws::Pinpoint::Types::RawEmail
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pinpoint::Types::RawEmail
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-pinpoint/types.rb
Overview
Note:
When making an API call, you may pass RawEmail data as a hash:
{
data: "data",
}
Specifies the contents of an email message, represented as a raw MIME message.
Instance Attribute Summary collapse
-
#data ⇒ String
The email message, represented as a raw MIME message.
Instance Attribute Details
#data ⇒ String
The email message, represented as a raw MIME message. The entire message must be base64 encoded.
12204 12205 12206 12207 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 12204 class RawEmail < Struct.new( :data) include Aws::Structure end |