Class: Aws::IoTEvents::Types::SMSConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTEvents::Types::SMSConfiguration
- Defined in:
- gems/aws-sdk-iotevents/lib/aws-sdk-iotevents/types.rb
Overview
Contains the configuration information of SMS notifications.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#additional_message ⇒ String
The message that you want to send.
-
#recipients ⇒ Array<Types::RecipientDetail>
Specifies one or more recipients who receive the message.
-
#sender_id ⇒ String
The sender ID.
Instance Attribute Details
#additional_message ⇒ String
The message that you want to send. The message can be up to 200 characters.
2685 2686 2687 2688 2689 2690 2691 |
# File 'gems/aws-sdk-iotevents/lib/aws-sdk-iotevents/types.rb', line 2685 class SMSConfiguration < Struct.new( :sender_id, :additional_message, :recipients) SENSITIVE = [] include Aws::Structure end |
#recipients ⇒ Array<Types::RecipientDetail>
Specifies one or more recipients who receive the message.
You must add the users that receive SMS messages to your AWS SSO store.
2685 2686 2687 2688 2689 2690 2691 |
# File 'gems/aws-sdk-iotevents/lib/aws-sdk-iotevents/types.rb', line 2685 class SMSConfiguration < Struct.new( :sender_id, :additional_message, :recipients) SENSITIVE = [] include Aws::Structure end |
#sender_id ⇒ String
The sender ID.
2685 2686 2687 2688 2689 2690 2691 |
# File 'gems/aws-sdk-iotevents/lib/aws-sdk-iotevents/types.rb', line 2685 class SMSConfiguration < Struct.new( :sender_id, :additional_message, :recipients) SENSITIVE = [] include Aws::Structure end |