Class: Aws::Pinpoint::Types::SMSMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pinpoint::Types::SMSMessage
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-pinpoint/types.rb
Overview
Note:
When making an API call, you may pass SMSMessage data as a hash:
{
body: "__string",
message_type: "TRANSACTIONAL", # accepts TRANSACTIONAL, PROMOTIONAL
sender_id: "__string",
substitutions: {
"__string" => ["__string"],
},
}
SMS Message.
Instance Attribute Summary collapse
-
#body ⇒ String
The message body of the notification, the email body or the text message.
-
#message_type ⇒ String
Is this a transaction priority message or lower priority.
-
#sender_id ⇒ String
Sender ID of sent message.
- #substitutions ⇒ Hash<String,Array<String>>
Instance Attribute Details
#body ⇒ String
The message body of the notification, the email body or the text message.
3818 3819 3820 3821 3822 3823 3824 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 3818 class SMSMessage < Struct.new( :body, :message_type, :sender_id, :substitutions) include Aws::Structure end |
#message_type ⇒ String
Is this a transaction priority message or lower priority.
3818 3819 3820 3821 3822 3823 3824 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 3818 class SMSMessage < Struct.new( :body, :message_type, :sender_id, :substitutions) include Aws::Structure end |
#sender_id ⇒ String
Sender ID of sent message.
3818 3819 3820 3821 3822 3823 3824 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 3818 class SMSMessage < Struct.new( :body, :message_type, :sender_id, :substitutions) include Aws::Structure end |
#substitutions ⇒ Hash<String,Array<String>>
3818 3819 3820 3821 3822 3823 3824 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 3818 class SMSMessage < Struct.new( :body, :message_type, :sender_id, :substitutions) include Aws::Structure end |