Class: Aws::Connect::Types::OutboundRawMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::Connect::Types::OutboundRawMessage
- Defined in:
- gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb
Overview
Information about the raw email body content.
Constant Summary collapse
- SENSITIVE =
[:subject, :body]
Instance Attribute Summary collapse
-
#body ⇒ String
The email message body.
-
#content_type ⇒ String
Type of content, that is,
text/plainortext/html. -
#subject ⇒ String
The email subject.
Instance Attribute Details
#body ⇒ String
The email message body.
18363 18364 18365 18366 18367 18368 18369 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 18363 class OutboundRawMessage < Struct.new( :subject, :body, :content_type) SENSITIVE = [:subject, :body] include Aws::Structure end |
#content_type ⇒ String
Type of content, that is, text/plain or text/html.
18363 18364 18365 18366 18367 18368 18369 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 18363 class OutboundRawMessage < Struct.new( :subject, :body, :content_type) SENSITIVE = [:subject, :body] include Aws::Structure end |
#subject ⇒ String
The email subject.
18363 18364 18365 18366 18367 18368 18369 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 18363 class OutboundRawMessage < Struct.new( :subject, :body, :content_type) SENSITIVE = [:subject, :body] include Aws::Structure end |