Class: Aws::Pinpoint::Types::VoiceMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pinpoint::Types::VoiceMessage
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-pinpoint/types.rb
Overview
When making an API call, you may pass VoiceMessage data as a hash:
{
body: "__string",
language_code: "__string",
origination_number: "__string",
substitutions: {
"__string" => ["__string"],
},
voice_id: "__string",
}
Specifies the settings for a one-time voice message that’s sent directly to an endpoint through the voice channel.
Instance Attribute Summary collapse
-
#body ⇒ String
The text of the script to use for the voice message.
-
#language_code ⇒ String
The code for the language to use when synthesizing the text of the message script.
-
#origination_number ⇒ String
The long code to send the voice message from.
-
#substitutions ⇒ Hash<String,Array<String>>
The default message variables to use in the voice message.
-
#voice_id ⇒ String
The name of the voice to use when delivering the message.
Instance Attribute Details
#body ⇒ String
The text of the script to use for the voice message.
17225 17226 17227 17228 17229 17230 17231 17232 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 17225 class VoiceMessage < Struct.new( :body, :language_code, :origination_number, :substitutions, :voice_id) include Aws::Structure end |
#language_code ⇒ String
The code for the language to use when synthesizing the text of the message script. For a list of supported languages and the code for each one, see the [Amazon Polly Developer Guide].
17225 17226 17227 17228 17229 17230 17231 17232 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 17225 class VoiceMessage < Struct.new( :body, :language_code, :origination_number, :substitutions, :voice_id) include Aws::Structure end |
#origination_number ⇒ String
The long code to send the voice message from. This value should be one of the dedicated long codes that’s assigned to your AWS account. Although it isn’t required, we recommend that you specify the long code in E.164 format, for example +12065550100, to ensure prompt and accurate delivery of the message.
17225 17226 17227 17228 17229 17230 17231 17232 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 17225 class VoiceMessage < Struct.new( :body, :language_code, :origination_number, :substitutions, :voice_id) include Aws::Structure end |
#substitutions ⇒ Hash<String,Array<String>>
The default message variables to use in the voice message. You can override the default variables with individual address variables.
17225 17226 17227 17228 17229 17230 17231 17232 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 17225 class VoiceMessage < Struct.new( :body, :language_code, :origination_number, :substitutions, :voice_id) include Aws::Structure end |
#voice_id ⇒ String
The name of the voice to use when delivering the message. For a list of supported voices, see the [Amazon Polly Developer Guide].
17225 17226 17227 17228 17229 17230 17231 17232 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 17225 class VoiceMessage < Struct.new( :body, :language_code, :origination_number, :substitutions, :voice_id) include Aws::Structure end |