Class: Aws::Pinpoint::Types::CampaignSmsMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pinpoint::Types::CampaignSmsMessage
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-pinpoint/types.rb
Overview
Note:
When making an API call, you may pass CampaignSmsMessage data as a hash:
{
body: "__string",
message_type: "TRANSACTIONAL", # accepts TRANSACTIONAL, PROMOTIONAL
sender_id: "__string",
}
SMS message configuration.
Instance Attribute Summary collapse
-
#body ⇒ String
The SMS text body.
-
#message_type ⇒ String
Is this is a transactional SMS message, otherwise a promotional message.
-
#sender_id ⇒ String
Sender ID of sent message.
Instance Attribute Details
#body ⇒ String
The SMS text body.
708 709 710 711 712 713 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 708 class CampaignSmsMessage < Struct.new( :body, :message_type, :sender_id) include Aws::Structure end |
#message_type ⇒ String
Is this is a transactional SMS message, otherwise a promotional message.
708 709 710 711 712 713 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 708 class CampaignSmsMessage < Struct.new( :body, :message_type, :sender_id) include Aws::Structure end |
#sender_id ⇒ String
Sender ID of sent message.
708 709 710 711 712 713 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 708 class CampaignSmsMessage < Struct.new( :body, :message_type, :sender_id) include Aws::Structure end |