Class: Aws::Pinpoint::Types::DefaultMessage
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Pinpoint::Types::DefaultMessage
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-pinpoint/types.rb
Overview
Specifies the default message for all channels.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #body  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The default body of the message. 
- 
  
    
      #substitutions  ⇒ Hash<String,Array<String>> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The default message variables to use in the message. 
Instance Attribute Details
#body ⇒ String
The default body of the message.
| 3327 3328 3329 3330 3331 3332 | # File 'lib/aws-sdk-pinpoint/types.rb', line 3327 class DefaultMessage < Struct.new( :body, :substitutions) SENSITIVE = [] include Aws::Structure end | 
#substitutions ⇒ Hash<String,Array<String>>
The default message variables to use in the message. You can override these default variables with individual address variables.
| 3327 3328 3329 3330 3331 3332 | # File 'lib/aws-sdk-pinpoint/types.rb', line 3327 class DefaultMessage < Struct.new( :body, :substitutions) SENSITIVE = [] include Aws::Structure end |