Class: Aws::LexModelsV2::Types::VoiceSettings
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexModelsV2::Types::VoiceSettings
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lexmodelsv2/types.rb
Overview
Defines settings for using an Amazon Polly voice to communicate with a user.
Valid values include:
-
‘standard`
-
‘neural`
-
‘long-form`
-
‘generative`
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#engine ⇒ String
Indicates the type of Amazon Polly voice that Amazon Lex should use for voice interaction with the user.
-
#voice_id ⇒ String
The identifier of the Amazon Polly voice to use.
Instance Attribute Details
#engine ⇒ String
Indicates the type of Amazon Polly voice that Amazon Lex should use for voice interaction with the user. For more information, see the [ ‘engine` parameter of the `SynthesizeSpeech` operation] in the *Amazon Polly developer guide*.
If you do not specify a value, the default is ‘standard`.
[1]: docs.aws.amazon.com/polly/latest/dg/API_SynthesizeSpeech.html#polly-SynthesizeSpeech-request-Engine
15968 15969 15970 15971 15972 15973 |
# File 'lib/aws-sdk-lexmodelsv2/types.rb', line 15968 class VoiceSettings < Struct.new( :voice_id, :engine) SENSITIVE = [] include Aws::Structure end |
#voice_id ⇒ String
The identifier of the Amazon Polly voice to use.
15968 15969 15970 15971 15972 15973 |
# File 'lib/aws-sdk-lexmodelsv2/types.rb', line 15968 class VoiceSettings < Struct.new( :voice_id, :engine) SENSITIVE = [] include Aws::Structure end |