aws.polly.describe_voices
Example SQL Queries
SELECT * FROMaws.polly.describe_voices;Description
Returns the list of voices that are available for use when requesting speech synthesis. Each voice speaks a specified language, is either male or female, and is identified by an ID, which is the ASCII version of the voice name.
When synthesizing speech ( SynthesizeSpeech ), you provide the voice ID for the voice you want from the list of voices returned by DescribeVoices.
For example, you want your news reader application to read news in a specific language, but giving a user the option to choose the voice. Using the DescribeVoices operation you can provide the user with a list of available voices to select from.
You can optionally specify a language code to filter the available voices. For example, if you specify en-US, the operation returns a list of all available US English voices.
This operation requires permissions to perform the polly:DescribeVoices action.
Table Definition
| Column Name | Column Data Type |
|---|---|
| engine Input Column Specifies the engine (standard, neural, long-form or generative) used by Amazon Polly when processing input text for speech synthesis. | VARCHAR |
| include_additional_language_codes Input Column Boolean value indicating whether to return any bilingual voices that use the specified language as an additional language. For instance, if you request all languages that use US English (es-US), and there is an Italian voice that speaks both Italian (it-IT) and US English, that voice will be included if you specify yes but not if you specify no. | BOOLEAN |
| language_code Input Column Language code of the voice. | VARCHAR |
| _aws_profile Input Column The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role. | STRUCT( |
Show child fields
| |
| _aws_region Input Column The AWS region to use. | VARCHAR |
| additional_language_codes 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. | VARCHAR[] |
Show child fields
| |
| gender Gender of the voice. | VARCHAR |
| id Amazon Polly assigned voice ID. This is the ID that you specify when calling the SynthesizeSpeech operation. | VARCHAR |
| language_name Human readable name of the language in English. | VARCHAR |
| name Name of the voice (for example, Salli, Kendra, etc.). This provides a human readable voice name that you might display in your application. | VARCHAR |
| supported_engines Specifies which engines (standard, neural, long-form or generative) are supported by a given voice. | VARCHAR[] |
Show child fields
| |