Class: Aws::IoTEvents::Types::EmailContent
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTEvents::Types::EmailContent
- 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
-
#additional_message ⇒ String
The message that you want to send.
-
#subject ⇒ String
The subject of the email.
Instance Attribute Details
#additional_message ⇒ String
The message that you want to send. The message can be up to 200 characters.
1717 1718 1719 1720 1721 1722 |
# File 'gems/aws-sdk-iotevents/lib/aws-sdk-iotevents/types.rb', line 1717 class EmailContent < Struct.new( :subject, :additional_message) SENSITIVE = [] include Aws::Structure end |
#subject ⇒ String
The subject of the email.
1717 1718 1719 1720 1721 1722 |
# File 'gems/aws-sdk-iotevents/lib/aws-sdk-iotevents/types.rb', line 1717 class EmailContent < Struct.new( :subject, :additional_message) SENSITIVE = [] include Aws::Structure end |