Class: Aws::IoTEvents::Types::EmailRecipients
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTEvents::Types::EmailRecipients
- Defined in:
- gems/aws-sdk-iotevents/lib/aws-sdk-iotevents/types.rb
Overview
Note:
When making an API call, you may pass EmailRecipients data as a hash:
{
to: [
{
sso_identity: {
identity_store_id: "IdentityStoreId", # required
user_id: "SSOReferenceId",
},
},
],
}
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.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#to ⇒ Array<Types::RecipientDetail>
Specifies one or more recipients who receive the email.
Instance Attribute Details
#to ⇒ Array<Types::RecipientDetail>
Specifies one or more recipients who receive the email.
3416 3417 3418 3419 3420 |
# File 'gems/aws-sdk-iotevents/lib/aws-sdk-iotevents/types.rb', line 3416 class EmailRecipients < Struct.new( :to) SENSITIVE = [] include Aws::Structure end |