Class: Aws::Connect::Types::InboundRawMessage

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-connect/types.rb

Overview

Information about the raw email body content.

Constant Summary collapse

SENSITIVE =
[:subject, :body]

Instance Attribute Summary collapse

Instance Attribute Details

#bodyString

The email message body.

Returns:

  • (String)


12781
12782
12783
12784
12785
12786
12787
12788
# File 'lib/aws-sdk-connect/types.rb', line 12781

class InboundRawMessage < Struct.new(
  :subject,
  :body,
  :content_type,
  :headers)
  SENSITIVE = [:subject, :body]
  include Aws::Structure
end

#content_typeString

Type of content, that is, ‘text/plain` or `text/html`.

Returns:

  • (String)


12781
12782
12783
12784
12785
12786
12787
12788
# File 'lib/aws-sdk-connect/types.rb', line 12781

class InboundRawMessage < Struct.new(
  :subject,
  :body,
  :content_type,
  :headers)
  SENSITIVE = [:subject, :body]
  include Aws::Structure
end

#headersHash<String,String>

Headers present in inbound email.

Returns:

  • (Hash<String,String>)


12781
12782
12783
12784
12785
12786
12787
12788
# File 'lib/aws-sdk-connect/types.rb', line 12781

class InboundRawMessage < Struct.new(
  :subject,
  :body,
  :content_type,
  :headers)
  SENSITIVE = [:subject, :body]
  include Aws::Structure
end

#subjectString

The email subject.

Returns:

  • (String)


12781
12782
12783
12784
12785
12786
12787
12788
# File 'lib/aws-sdk-connect/types.rb', line 12781

class InboundRawMessage < Struct.new(
  :subject,
  :body,
  :content_type,
  :headers)
  SENSITIVE = [:subject, :body]
  include Aws::Structure
end