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

UpdateVocabularyRequest

import type { UpdateVocabularyRequest } from "https://aws-api.deno.dev/v0.3/services/transcribeservice.ts?docs=full";
interface UpdateVocabularyRequest {
LanguageCode: LanguageCode;
Phrases?: string[] | null;
VocabularyFileUri?: string | null;
VocabularyName: string;
}

§Properties

§
LanguageCode: LanguageCode
[src]

The language code of the vocabulary entries. For a list of languages and their corresponding language codes, see Supported languages.

§
Phrases?: string[] | null
[src]

An array of strings containing the vocabulary entries.

§
VocabularyFileUri?: string | null
[src]

The S3 location of the text file that contains the definition of the custom vocabulary. The URI must be in the same region as the API endpoint that you are calling. The general form is:

https://s3.<aws-region>.amazonaws.com/<AWSDOC-EXAMPLE-BUCKET>/<keyprefix>/<objectkey>

For example:

https://s3.us-east-1.amazonaws.com/AWSDOC-EXAMPLE-BUCKET/vocab.txt

For more information about S3 object names, see Object Keys in the Amazon S3 Developer Guide.

For more information about custom vocabularies, see Custom Vocabularies.

§
VocabularyName: string
[src]

The name of the vocabulary to update. The name is case sensitive. If you try to update a vocabulary with the same name as a previous vocabulary you will receive a ConflictException error.