| Copyright | (c) 2013-2023 Brendan Hay |
|---|---|
| License | Mozilla Public License, v. 2.0. |
| Maintainer | Brendan Hay |
| Stability | auto-generated |
| Portability | non-portable (GHC extensions) |
| Safe Haskell | Safe-Inferred |
| Language | Haskell2010 |
Amazonka.Transcribe.ListTranscriptionJobs
Description
Provides a list of transcription jobs that match the specified criteria. If no criteria are specified, all transcription jobs are returned.
To get detailed information about a specific transcription job, use the operation.
Synopsis
- data ListTranscriptionJobs = ListTranscriptionJobs' {}
- newListTranscriptionJobs :: ListTranscriptionJobs
- listTranscriptionJobs_jobNameContains :: Lens' ListTranscriptionJobs (Maybe Text)
- listTranscriptionJobs_maxResults :: Lens' ListTranscriptionJobs (Maybe Natural)
- listTranscriptionJobs_nextToken :: Lens' ListTranscriptionJobs (Maybe Text)
- listTranscriptionJobs_status :: Lens' ListTranscriptionJobs (Maybe TranscriptionJobStatus)
- data ListTranscriptionJobsResponse = ListTranscriptionJobsResponse' {}
- newListTranscriptionJobsResponse :: Int -> ListTranscriptionJobsResponse
- listTranscriptionJobsResponse_nextToken :: Lens' ListTranscriptionJobsResponse (Maybe Text)
- listTranscriptionJobsResponse_status :: Lens' ListTranscriptionJobsResponse (Maybe TranscriptionJobStatus)
- listTranscriptionJobsResponse_transcriptionJobSummaries :: Lens' ListTranscriptionJobsResponse (Maybe [TranscriptionJobSummary])
- listTranscriptionJobsResponse_httpStatus :: Lens' ListTranscriptionJobsResponse Int
Creating a Request
data ListTranscriptionJobs Source #
See: newListTranscriptionJobs smart constructor.
Constructors
| ListTranscriptionJobs' | |
Fields
| |
Instances
newListTranscriptionJobs :: ListTranscriptionJobs Source #
Create a value of ListTranscriptionJobs with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:jobNameContains:ListTranscriptionJobs', listTranscriptionJobs_jobNameContains - Returns only the transcription jobs that contain the specified string.
The search is not case sensitive.
$sel:maxResults:ListTranscriptionJobs', listTranscriptionJobs_maxResults - The maximum number of transcription jobs to return in each page of
results. If there are fewer results than the value that you specify,
only the actual results are returned. If you don't specify a value, a
default of 5 is used.
ListTranscriptionJobs, listTranscriptionJobs_nextToken - If your ListTranscriptionJobs request returns more results than can be
displayed, NextToken is displayed in the response with an associated
string. To get the next page of results, copy this string and repeat
your request, including NextToken with the value of the copied string.
Repeat as needed to view all your results.
ListTranscriptionJobs, listTranscriptionJobs_status - Returns only transcription jobs with the specified status. Jobs are
ordered by creation date, with the newest job first. If you don't
include Status, all transcription jobs are returned.
Request Lenses
listTranscriptionJobs_jobNameContains :: Lens' ListTranscriptionJobs (Maybe Text) Source #
Returns only the transcription jobs that contain the specified string. The search is not case sensitive.
listTranscriptionJobs_maxResults :: Lens' ListTranscriptionJobs (Maybe Natural) Source #
The maximum number of transcription jobs to return in each page of results. If there are fewer results than the value that you specify, only the actual results are returned. If you don't specify a value, a default of 5 is used.
listTranscriptionJobs_nextToken :: Lens' ListTranscriptionJobs (Maybe Text) Source #
If your ListTranscriptionJobs request returns more results than can be
displayed, NextToken is displayed in the response with an associated
string. To get the next page of results, copy this string and repeat
your request, including NextToken with the value of the copied string.
Repeat as needed to view all your results.
listTranscriptionJobs_status :: Lens' ListTranscriptionJobs (Maybe TranscriptionJobStatus) Source #
Returns only transcription jobs with the specified status. Jobs are
ordered by creation date, with the newest job first. If you don't
include Status, all transcription jobs are returned.
Destructuring the Response
data ListTranscriptionJobsResponse Source #
See: newListTranscriptionJobsResponse smart constructor.
Constructors
| ListTranscriptionJobsResponse' | |
Fields
| |
Instances
newListTranscriptionJobsResponse Source #
Create a value of ListTranscriptionJobsResponse with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
ListTranscriptionJobs, listTranscriptionJobsResponse_nextToken - If NextToken is present in your response, it indicates that not all
results are displayed. To view the next set of results, copy the string
associated with the NextToken parameter in your results output, then
run your request again including NextToken with the value of the
copied string. Repeat as needed to view all your results.
ListTranscriptionJobs, listTranscriptionJobsResponse_status - Lists all transcription jobs that have the status specified in your
request. Jobs are ordered by creation date, with the newest job first.
$sel:transcriptionJobSummaries:ListTranscriptionJobsResponse', listTranscriptionJobsResponse_transcriptionJobSummaries - Provides a summary of information about each result.
$sel:httpStatus:ListTranscriptionJobsResponse', listTranscriptionJobsResponse_httpStatus - The response's http status code.
Response Lenses
listTranscriptionJobsResponse_nextToken :: Lens' ListTranscriptionJobsResponse (Maybe Text) Source #
If NextToken is present in your response, it indicates that not all
results are displayed. To view the next set of results, copy the string
associated with the NextToken parameter in your results output, then
run your request again including NextToken with the value of the
copied string. Repeat as needed to view all your results.
listTranscriptionJobsResponse_status :: Lens' ListTranscriptionJobsResponse (Maybe TranscriptionJobStatus) Source #
Lists all transcription jobs that have the status specified in your request. Jobs are ordered by creation date, with the newest job first.
listTranscriptionJobsResponse_transcriptionJobSummaries :: Lens' ListTranscriptionJobsResponse (Maybe [TranscriptionJobSummary]) Source #
Provides a summary of information about each result.
listTranscriptionJobsResponse_httpStatus :: Lens' ListTranscriptionJobsResponse Int Source #
The response's http status code.