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

EngineTranscribeSettings

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

Settings specific to the Amazon Transcribe engine.

interface EngineTranscribeSettings {
ContentIdentificationType?: TranscribeContentIdentificationType | null;
ContentRedactionType?: TranscribeContentRedactionType | null;
EnablePartialResultsStabilization?: boolean | null;
LanguageCode: TranscribeLanguageCode;
LanguageModelName?: string | null;
PartialResultsStability?: TranscribePartialResultsStability | null;
PiiEntityTypes?: string | null;
Region?: TranscribeRegion | null;
VocabularyFilterMethod?: TranscribeVocabularyFilterMethod | null;
VocabularyFilterName?: string | null;
VocabularyName?: string | null;
}

§Properties

§
ContentIdentificationType?: TranscribeContentIdentificationType | null
[src]

Set this field to PII to identify personally identifiable information in the transcription output.

§
ContentRedactionType?: TranscribeContentRedactionType | null
[src]

Set this field to PII to redact personally identifiable information in the transcription output. Content redaction is performed only upon complete transcription of the audio segments.

You can’t set ContentRedactionType and ContentIdentificationType in the same request. If you set both, your request returns a BadRequestException.

§
EnablePartialResultsStabilization?: boolean | null
[src]

Generates partial transcription results that are less likely to change as meeting attendees speak. It does so by only allowing the last few words from the partial results to change.

§

The language code specified for the Amazon Transcribe engine.

§
LanguageModelName?: string | null
[src]

The name of the language model used during transcription.

§
PartialResultsStability?: TranscribePartialResultsStability | null
[src]

The stabity level of a partial results transcription. Determines how stable you want the transcription results to be. A higher level means the transcription results are less likely to change.

§
PiiEntityTypes?: string | null
[src]

Lists the PII entity types you want to identify or redact. To specify entity types, you must enable ContentIdentificationType or ContentRedactionType.

PIIEntityTypes must be comma-separated. The available values are: BANK_ACCOUNT_NUMBER, BANK_ROUTING, CREDIT_DEBIT_NUMBER, CREDIT_DEBIT_CVV, CREDIT_DEBIT_EXPIRY, PIN, EMAIL, ADDRESS, NAME, PHONE, SSN, and ALL.

PiiEntityTypes is an optional parameter with a default value of ALL.

§
Region?: TranscribeRegion | null
[src]

The AWS Region passed to Amazon Transcribe. If you don't specify a Region, Amazon Chime uses the meeting's Region.

§
VocabularyFilterMethod?: TranscribeVocabularyFilterMethod | null
[src]

The filtering method passed to Amazon Transcribe.

§
VocabularyFilterName?: string | null
[src]

The name of the vocabulary filter passed to Amazon Transcribe.

§
VocabularyName?: string | null
[src]

The name of the vocabulary passed to Amazon Transcribe.