Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Voice

import type { Voice } from "https://aws-api.deno.dev/v0.3/services/polly.ts?docs=full";

Description of the voice.

interface Voice {
AdditionalLanguageCodes?: LanguageCode[] | null;
Gender?: Gender | null;
Id?: VoiceId | null;
LanguageCode?: LanguageCode | null;
LanguageName?: string | null;
Name?: string | null;
SupportedEngines?: Engine[] | null;
}

§Properties

§
AdditionalLanguageCodes?: LanguageCode[] | null
[src]

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.

§
Gender?: Gender | null
[src]

Gender of the voice.

§
Id?: VoiceId | null
[src]

Amazon Polly assigned voice ID. This is the ID that you specify when calling the SynthesizeSpeech operation.

§
LanguageCode?: LanguageCode | null
[src]

Language code of the voice.

§
LanguageName?: string | null
[src]

Human readable name of the language in English.

§
Name?: string | null
[src]

Name of the voice (for example, Salli, Kendra, etc.). This provides a human readable voice name that you might display in your application.

§
SupportedEngines?: Engine[] | null
[src]

Specifies which engines (standard or neural) that are supported by a given voice.