Class: Aws::Pinpoint::Types::UpdateSmsChannelRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pinpoint::Types::UpdateSmsChannelRequest
- Defined in:
- gems/aws-sdk-pinpoint/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",
},
}
Constant Summary collapse
- SENSITIVE =
[]
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
19789 19790 19791 19792 19793 19794 |
# File 'gems/aws-sdk-pinpoint/lib/aws-sdk-pinpoint/types.rb', line 19789 class UpdateSmsChannelRequest < Struct.new( :application_id, :sms_channel_request) SENSITIVE = [] include Aws::Structure end |
#sms_channel_request ⇒ Types::SMSChannelRequest
Specifies the status and settings of the SMS channel for an application.
19789 19790 19791 19792 19793 19794 |
# File 'gems/aws-sdk-pinpoint/lib/aws-sdk-pinpoint/types.rb', line 19789 class UpdateSmsChannelRequest < Struct.new( :application_id, :sms_channel_request) SENSITIVE = [] include Aws::Structure end |