Class: Aws::PinpointSMSVoice::Types::PlainTextMessageType
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::PinpointSMSVoice::Types::PlainTextMessageType
 
- Defined in:
- gems/aws-sdk-pinpointsmsvoice/lib/aws-sdk-pinpointsmsvoice/types.rb
Overview
An object that defines a message that contains unformatted text.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #language_code  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The language to use when delivering the message. 
- 
  
    
      #text  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The plain (not SSML-formatted) text to deliver to the recipient. 
- 
  
    
      #voice_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name of the voice that you want to use to deliver the message. 
Instance Attribute Details
#language_code ⇒ String
The language to use when delivering the message. For a complete list of supported languages, see the Amazon Polly Developer Guide.
| 402 403 404 405 406 407 408 | # File 'gems/aws-sdk-pinpointsmsvoice/lib/aws-sdk-pinpointsmsvoice/types.rb', line 402 class PlainTextMessageType < Struct.new( :language_code, :text, :voice_id) SENSITIVE = [] include Aws::Structure end | 
#text ⇒ String
The plain (not SSML-formatted) text to deliver to the recipient.
| 402 403 404 405 406 407 408 | # File 'gems/aws-sdk-pinpointsmsvoice/lib/aws-sdk-pinpointsmsvoice/types.rb', line 402 class PlainTextMessageType < Struct.new( :language_code, :text, :voice_id) SENSITIVE = [] include Aws::Structure end | 
#voice_id ⇒ String
The name of the voice that you want to use to deliver the message. For a complete list of supported voices, see the Amazon Polly Developer Guide.
| 402 403 404 405 406 407 408 | # File 'gems/aws-sdk-pinpointsmsvoice/lib/aws-sdk-pinpointsmsvoice/types.rb', line 402 class PlainTextMessageType < Struct.new( :language_code, :text, :voice_id) SENSITIVE = [] include Aws::Structure end |