Class: Aws::Pinpoint::Types::UpdateSmsChannelRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pinpoint::Types::UpdateSmsChannelRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-pinpoint/types.rb
Overview
Note:
When making an API call, you may pass UpdateSmsChannelRequest data as a hash:
{
application_id: "__string", # required
sms_channel_request: { # required
enabled: false,
sender_id: "__string",
short_code: "__string",
},
}
Instance Attribute Summary collapse
- #application_id ⇒ String
-
#sms_channel_request ⇒ Types::SMSChannelRequest
Specifies the status and settings of the SMS channel for an application.
Instance Attribute Details
#application_id ⇒ String
16880 16881 16882 16883 16884 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 16880 class UpdateSmsChannelRequest < Struct.new( :application_id, :sms_channel_request) include Aws::Structure end |
#sms_channel_request ⇒ Types::SMSChannelRequest
Specifies the status and settings of the SMS channel for an application.
16880 16881 16882 16883 16884 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 16880 class UpdateSmsChannelRequest < Struct.new( :application_id, :sms_channel_request) include Aws::Structure end |