interface AwsTranscribeNodeParameters {
authentication?: "iam" | "assumeRole";
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 authentication?: "iam" | "assumeRole"
readonly detect Language?: boolean
Whether to set this field to true to enable automatic language identification
readonly filters?: { ... }
Default: {}
readonly language Code?:
| "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 media File Uri?: 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 return All?: boolean
Whether to return all results or only up to a given limit
readonly return Transcript?: 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 transcription Job Name?: string
The name of the job
Default: "iam"