Interface AwsTranscribeNodeParameters

Source
interface AwsTranscribeNodeParameters {
    detectLanguage?: boolean;
    filters?: {
        jobNameContains?: string;
        status?:
            | "FAILED"
            | "COMPLETED"
            | "IN_PROGRESS"
            | "QUEUED";
    };
    languageCode?: | "en-US"
    | "en-GB"
    | "de-DE"
    | "en-IN"
    | "en-IE"
    | "ru-RU"
    | "es-ES";
    limit?: number;
    mediaFileUri?: string;
    operation?: "create"
    | "get"
    | "getAll"
    | "delete";
    options?: {
        channelIdentification?: boolean;
        maxAlternatives?: number;
        maxSpeakerLabels?: number;
        vocabularyFilterMethod?: "tag" | "remove" | "mask";
        vocabularyFilterName?: string;
        vocabularyName?: string;
    };
    resource?: "transcriptionJob";
    returnAll?: boolean;
    returnTranscript?: boolean;
    simple?: boolean;
    transcriptionJobName?: string;
}

Properties§

§readonly detectLanguage?: boolean

Whether to set this field to true to enable automatic language identification

§readonly filters?: { ... }

Default: {}

§readonly languageCode?:
    | "en-US"
    | "en-GB"
    | "de-DE"
    | "en-IN"
    | "en-IE"
    | "ru-RU"
    | "es-ES"

Language used in the input media file Default: "en-US"

§readonly limit?: number

Max number of results to return Default: 20 Type options: {"minValue":1}

§readonly mediaFileUri?: string

The S3 object location of the input media file

§readonly operation?: "create" | "get" | "getAll" | "delete"

Default: "create"

§readonly options?: { ... }

Default: {}

§readonly resource?: "transcriptionJob"

Default: "transcriptionJob"

§readonly returnAll?: boolean

Whether to return all results or only up to a given limit

§readonly returnTranscript?: boolean

By default, the response only contains metadata about the transcript. Enable this option to retrieve the transcript instead. Default: true

§readonly simple?: boolean

Whether to return a simplified version of the response instead of the raw data Default: true

§readonly transcriptionJobName?: string

The name of the job