Class Voice
Description of the voice.
public class Voice
- Inheritance
-
Voice
- Inherited Members
Constructors
Voice()
public Voice()
Properties
AdditionalLanguageCodes
Gets and sets the property AdditionalLanguageCodes.
Additional codes for languages available for the specified voice in addition to its default language.
For example, the default language for Aditi is Indian English (en-IN) because it was first used for that language. Since Aditi is bilingual and fluent in both Indian English and Hindi, this parameter would show the code
hi-IN
.
public List<string> AdditionalLanguageCodes { get; set; }
Property Value
Gender
Gets and sets the property Gender.
Gender of the voice.
public Gender Gender { get; set; }
Property Value
Id
Gets and sets the property Id.
Amazon Polly assigned voice ID. This is the ID that you specify when calling the
SynthesizeSpeech
operation.
public VoiceId Id { get; set; }
Property Value
LanguageCode
Gets and sets the property LanguageCode.
Language code of the voice.
public LanguageCode LanguageCode { get; set; }
Property Value
LanguageName
Gets and sets the property LanguageName.
Human readable name of the language in English.
public string LanguageName { get; set; }
Property Value
Name
Gets and sets the property Name.
Name of the voice (for example, Salli, Kendra, etc.). This provides a human readable voice name that you might display in your application.
public string Name { get; set; }
Property Value
SupportedEngines
Gets and sets the property SupportedEngines.
Specifies which engines (
standard
or neural
) that are supported
by a given voice.
public List<string> SupportedEngines { get; set; }