Class: Aws::IoTEvents::Types::EmailContent

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-iotevents/lib/aws-sdk-iotevents/types.rb

Overview

Contains the subject and message of an email.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#additional_messageString

The message that you want to send. The message can be up to 200 characters.

Returns:

  • (String)


1718
1719
1720
1721
1722
1723
# File 'gems/aws-sdk-iotevents/lib/aws-sdk-iotevents/types.rb', line 1718

class EmailContent < Struct.new(
  :subject,
  :additional_message)
  SENSITIVE = []
  include Aws::Structure
end

#subjectString

The subject of the email.

Returns:

  • (String)


1718
1719
1720
1721
1722
1723
# File 'gems/aws-sdk-iotevents/lib/aws-sdk-iotevents/types.rb', line 1718

class EmailContent < Struct.new(
  :subject,
  :additional_message)
  SENSITIVE = []
  include Aws::Structure
end