Class: Aws::IoTEvents::Types::EmailConfiguration

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

Overview

Contains the configuration information of email notifications.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#contentTypes::EmailContent

Contains the subject and message of an email.

Returns:



1699
1700
1701
1702
1703
1704
1705
# File 'gems/aws-sdk-iotevents/lib/aws-sdk-iotevents/types.rb', line 1699

class EmailConfiguration < Struct.new(
  :from,
  :content,
  :recipients)
  SENSITIVE = []
  include Aws::Structure
end

#fromString

The email address that sends emails.

If you use the AWS IoT Events managed AWS Lambda function to manage your emails, you must verify the email address that sends emails in Amazon SES.

Returns:

  • (String)


1699
1700
1701
1702
1703
1704
1705
# File 'gems/aws-sdk-iotevents/lib/aws-sdk-iotevents/types.rb', line 1699

class EmailConfiguration < Struct.new(
  :from,
  :content,
  :recipients)
  SENSITIVE = []
  include Aws::Structure
end

#recipientsTypes::EmailRecipients

Contains the information of one or more recipients who receive the emails.

You must add the users that receive emails to your AWS SSO store.



1699
1700
1701
1702
1703
1704
1705
# File 'gems/aws-sdk-iotevents/lib/aws-sdk-iotevents/types.rb', line 1699

class EmailConfiguration < Struct.new(
  :from,
  :content,
  :recipients)
  SENSITIVE = []
  include Aws::Structure
end