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§

Source§

readonly detectLanguage?: boolean

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

Source§

readonly filters?: {
    jobNameContains?: string;
    status?:
        | "FAILED"
        | "COMPLETED"
        | "IN_PROGRESS"
        | "QUEUED";
}

Default: {}

Source§

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"

Source§

readonly limit?: number

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

Source§

readonly mediaFileUri?: string

The S3 object location of the input media file

Source§

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

Default: "create"

Source§

readonly options?: {
    channelIdentification?: boolean;
    maxAlternatives?: number;
    maxSpeakerLabels?: number;
    vocabularyFilterMethod?: "tag" | "remove" | "mask";
    vocabularyFilterName?: string;
    vocabularyName?: string;
}

Default: {}

Source§

readonly resource?: "transcriptionJob"

Default: "transcriptionJob"

Source§

readonly returnAll?: boolean

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

Source§

readonly returnTranscript?: boolean

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

Source§

readonly simple?: boolean

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

Source§

readonly transcriptionJobName?: string

The name of the job