Class: Aws::Connect::Types::OutboundRawMessage

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)


25690
25691
25692
25693
25694
25695
25696
# File 'lib/aws-sdk-connect/types.rb', line 25690

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

#content_typeString

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

Returns:

  • (String)


25690
25691
25692
25693
25694
25695
25696
# File 'lib/aws-sdk-connect/types.rb', line 25690

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

#subjectString

The email subject.

Returns:

  • (String)


25690
25691
25692
25693
25694
25695
25696
# File 'lib/aws-sdk-connect/types.rb', line 25690

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