Class: Aws::Connect::Types::InboundRawMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::Connect::Types::InboundRawMessage
- 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. -
#headers ⇒ Hash<String,String>
Headers present in inbound email.
-
#subject ⇒ String
The email subject.
Instance Attribute Details
#body ⇒ String
The email message body.
15394 15395 15396 15397 15398 15399 15400 15401 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 15394 class InboundRawMessage < Struct.new( :subject, :body, :content_type, :headers) SENSITIVE = [:subject, :body] include Aws::Structure end |
#content_type ⇒ String
Type of content, that is, text/plain or text/html.
15394 15395 15396 15397 15398 15399 15400 15401 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 15394 class InboundRawMessage < Struct.new( :subject, :body, :content_type, :headers) SENSITIVE = [:subject, :body] include Aws::Structure end |
#headers ⇒ Hash<String,String>
Headers present in inbound email.
15394 15395 15396 15397 15398 15399 15400 15401 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 15394 class InboundRawMessage < Struct.new( :subject, :body, :content_type, :headers) SENSITIVE = [:subject, :body] include Aws::Structure end |
#subject ⇒ String
The email subject.
15394 15395 15396 15397 15398 15399 15400 15401 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 15394 class InboundRawMessage < Struct.new( :subject, :body, :content_type, :headers) SENSITIVE = [:subject, :body] include Aws::Structure end |