list_transcriptions {aws.transcribe}R Documentation

List AWS Transcribe Jobs

Description

List AWS Transcribe jobs, by status

Usage

list_transcriptions(
  status = c("COMPLETED", "IN_PROGRESS", "FAILED"),
  n = NULL,
  token = NULL,
  ...
)

Arguments

status

A character string specifying the status of jobs to retrieve. Use get_transcription to retrieve a specific transcription.

n

Optionally, a numeric value indicating the maximum number of results to return (for pagination).

token

Optionally, a “NextToken” indicating the next result to retrieve (for pagination).

...

Additional arguments passed to transcribeHTTP.

Value

A list.

Examples

## Not run: 
list_transcriptions("COMPLETED")

## End(Not run)

[Package aws.transcribe version 0.1.3 Index]