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

ContentRedaction

import type { ContentRedaction } from "https://aws-api.deno.dev/v0.4/services/transcribeservice.ts?docs=full";

Makes it possible to redact or flag specified personally identifiable information (PII) in your transcript. If you use ContentRedaction, you must also include the sub-parameters: PiiEntityTypes, RedactionOutput, and RedactionType.

interface ContentRedaction {
PiiEntityTypes?: PiiEntityType[] | null;
RedactionOutput: RedactionOutput;
RedactionType: RedactionType;
}

§Properties

§
PiiEntityTypes?: PiiEntityType[] | null
[src]

Specify which types of personally identifiable information (PII) you want to redact in your transcript. You can include as many types as you'd like, or you can select ALL.

§
RedactionOutput: RedactionOutput
[src]

Specify if you want only a redacted transcript, or if you want a redacted and an unredacted transcript.

When you choose redacted Amazon Transcribe creates only a redacted transcript.

When you choose redacted_and_unredacted Amazon Transcribe creates a redacted and an unredacted transcript (as two separate files).

§
RedactionType: RedactionType
[src]

Specify the category of information you want to redact; PII (personally identifiable information) is the only valid value. You can use PiiEntityTypes to choose which types of PII you want to redact.