Class: Aws::Pinpoint::Types::SMSChannelRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pinpoint::Types::SMSChannelRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-pinpoint/types.rb
Overview
Note:
When making an API call, you may pass SMSChannelRequest data as a hash:
{
enabled: false,
sender_id: "__string",
}
SMS Channel Request
Instance Attribute Summary collapse
-
#enabled ⇒ Boolean
If the channel is enabled for sending messages.
-
#sender_id ⇒ String
Sender identifier of your messages.
Instance Attribute Details
#enabled ⇒ Boolean
If the channel is enabled for sending messages.
3721 3722 3723 3724 3725 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 3721 class SMSChannelRequest < Struct.new( :enabled, :sender_id) include Aws::Structure end |
#sender_id ⇒ String
Sender identifier of your messages.
3721 3722 3723 3724 3725 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 3721 class SMSChannelRequest < Struct.new( :enabled, :sender_id) include Aws::Structure end |