Class: Aws::IoTEvents::Types::EmailContent
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTEvents::Types::EmailContent
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iotevents/types.rb
Overview
Note:
When making an API call, you may pass EmailContent data as a hash:
{
subject: "EmailSubject",
additional_message: "NotificationAdditionalMessage",
}
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.
3382 3383 3384 3385 3386 3387 |
# File 'lib/aws-sdk-iotevents/types.rb', line 3382 class EmailContent < Struct.new( :subject, :additional_message) SENSITIVE = [] include Aws::Structure end |
#subject ⇒ String
The subject of the email.
3382 3383 3384 3385 3386 3387 |
# File 'lib/aws-sdk-iotevents/types.rb', line 3382 class EmailContent < Struct.new( :subject, :additional_message) SENSITIVE = [] include Aws::Structure end |