Class: Aws::Pinpoint::Types::EndpointSendConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pinpoint::Types::EndpointSendConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-pinpoint/types.rb
Overview
Specifies the content, including message variables and attributes, to use in a message that’s sent directly to an endpoint.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#body_override ⇒ String
The body of the message.
-
#context ⇒ Hash<String,String>
A map of custom attributes to attach to the message for the address.
-
#raw_content ⇒ String
The raw, JSON-formatted string to use as the payload for the message.
-
#substitutions ⇒ Hash<String,Array<String>>
A map of the message variables to merge with the variables specified for the default message (DefaultMessage.Substitutions).
-
#title_override ⇒ String
The title or subject line of the message.
Instance Attribute Details
#body_override ⇒ String
The body of the message. If specified, this value overrides the default message body.
5135 5136 5137 5138 5139 5140 5141 5142 5143 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 5135 class EndpointSendConfiguration < Struct.new( :body_override, :context, :raw_content, :substitutions, :title_override) SENSITIVE = [] include Aws::Structure end |
#context ⇒ Hash<String,String>
A map of custom attributes to attach to the message for the address. Attribute names are case sensitive.
For a push notification, this payload is added to the data.pinpoint object. For an email or text message, this payload is added to email/SMS delivery receipt event attributes.
5135 5136 5137 5138 5139 5140 5141 5142 5143 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 5135 class EndpointSendConfiguration < Struct.new( :body_override, :context, :raw_content, :substitutions, :title_override) SENSITIVE = [] include Aws::Structure end |
#raw_content ⇒ String
The raw, JSON-formatted string to use as the payload for the message. If specified, this value overrides all other values for the message.
5135 5136 5137 5138 5139 5140 5141 5142 5143 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 5135 class EndpointSendConfiguration < Struct.new( :body_override, :context, :raw_content, :substitutions, :title_override) SENSITIVE = [] include Aws::Structure end |
#substitutions ⇒ Hash<String,Array<String>>
A map of the message variables to merge with the variables specified for the default message (DefaultMessage.Substitutions). The variables specified in this map take precedence over all other variables.
5135 5136 5137 5138 5139 5140 5141 5142 5143 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 5135 class EndpointSendConfiguration < Struct.new( :body_override, :context, :raw_content, :substitutions, :title_override) SENSITIVE = [] include Aws::Structure end |
#title_override ⇒ String
The title or subject line of the message. If specified, this value overrides the default message title or subject line.
5135 5136 5137 5138 5139 5140 5141 5142 5143 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 5135 class EndpointSendConfiguration < Struct.new( :body_override, :context, :raw_content, :substitutions, :title_override) SENSITIVE = [] include Aws::Structure end |