Class: Aws::Pinpoint::Types::DefaultMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pinpoint::Types::DefaultMessage
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-pinpoint/types.rb
Overview
Note:
When making an API call, you may pass DefaultMessage data as a hash:
{
body: "__string",
substitutions: {
"__string" => ["__string"],
},
}
Default Message across push notification, email, and sms.
Instance Attribute Summary collapse
-
#body ⇒ String
The message body of the notification, the email body or the text message.
- #substitutions ⇒ Hash<String,Array<String>>
Instance Attribute Details
#body ⇒ String
The message body of the notification, the email body or the text message.
1108 1109 1110 1111 1112 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 1108 class DefaultMessage < Struct.new( :body, :substitutions) include Aws::Structure end |
#substitutions ⇒ Hash<String,Array<String>>
1108 1109 1110 1111 1112 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 1108 class DefaultMessage < Struct.new( :body, :substitutions) include Aws::Structure end |