[ aws . transcribe ]
Lists transcription jobs with the specified status.
See also: AWS API Documentation
See ‘aws help’ for descriptions of global parameters.
list-transcription-jobs
[--status <value>]
[--job-name-contains <value>]
[--next-token <value>]
[--max-results <value>]
[--cli-input-json | --cli-input-yaml]
[--generate-cli-skeleton <value>]
[--cli-auto-prompt <value>]
--status
(string)
When specified, returns only transcription jobs with the specified status. Jobs are ordered by creation date, with the newest jobs returned first. If you don’t specify a status, Amazon Transcribe returns all transcription jobs ordered by creation date.
Possible values:
QUEUED
IN_PROGRESS
FAILED
COMPLETED
--job-name-contains
(string)
When specified, the jobs returned in the list are limited to jobs whose name contains the specified string.
--next-token
(string)
If the result of the previous request to
ListTranscriptionJobs
was truncated, include theNextToken
to fetch the next set of jobs.
--max-results
(integer)
The maximum number of jobs to return in the response. If there are fewer results in the list, this response contains only the actual results.
--cli-input-json
| --cli-input-yaml
(string)
Reads arguments from the JSON string provided. The JSON string follows the format provided by --generate-cli-skeleton
. If other arguments are provided on the command line, those values will override the JSON-provided values. It is not possible to pass arbitrary binary values using a JSON-provided value as the string will be taken literally. This may not be specified along with --cli-input-yaml
.
--generate-cli-skeleton
(string)
Prints a JSON skeleton to standard output without sending an API request. If provided with no value or the value input
, prints a sample input JSON that can be used as an argument for --cli-input-json
. Similarly, if provided yaml-input
it will print a sample input YAML that can be used with --cli-input-yaml
. If provided with the value output
, it validates the command inputs and returns a sample output JSON for that command.
--cli-auto-prompt
(boolean)
Automatically prompt for CLI input parameters.
See ‘aws help’ for descriptions of global parameters.
Status -> (string)
The requested status of the jobs returned.
NextToken -> (string)
The
ListTranscriptionJobs
operation returns a page of jobs at a time. The maximum size of the page is set by theMaxResults
parameter. If there are more jobs in the list than the page size, Amazon Transcribe returns theNextPage
token. Include the token in the next request to theListTranscriptionJobs
operation to return in the next page of jobs.
TranscriptionJobSummaries -> (list)
A list of objects containing summary information for a transcription job.
(structure)
Provides a summary of information about a transcription job.
TranscriptionJobName -> (string)
The name of the transcription job.
CreationTime -> (timestamp)
A timestamp that shows when the job was created.
StartTime -> (timestamp)
A timestamp that shows when the job started processing.
CompletionTime -> (timestamp)
A timestamp that shows when the job was completed.
LanguageCode -> (string)
The language code for the input speech.
TranscriptionJobStatus -> (string)
The status of the transcription job. When the status is
COMPLETED
, use theGetTranscriptionJob
operation to get the results of the transcription.FailureReason -> (string)
If the
TranscriptionJobStatus
field isFAILED
, a description of the error.OutputLocationType -> (string)
Indicates the location of the output of the transcription job.
If the value is
CUSTOMER_BUCKET
then the location is the S3 bucket specified in theoutputBucketName
field when the transcription job was started with theStartTranscriptionJob
operation.If the value is
SERVICE_BUCKET
then the output is stored by Amazon Transcribe and can be retrieved using the URI in theGetTranscriptionJob
response’sTranscriptFileUri
field.ContentRedaction -> (structure)
The content redaction settings of the transcription job.
RedactionType -> (string)
Request parameter that defines the entities to be redacted. The only accepted value is
PII
.RedactionOutput -> (string)
The output transcript file stored in either the default S3 bucket or in a bucket you specify.
When you choose
redacted
Amazon Transcribe outputs only the redacted transcript.When you choose
redacted_and_unredacted
Amazon Transcribe outputs both the redacted and unredacted transcripts.