Safe Haskell | None |
---|---|
Language | Haskell2010 |
The ListJobsByStatus operation gets a list of jobs that have a specified status. The response body contains one element for each job that satisfies the search criteria.
http://docs.aws.amazon.com/elastictranscoder/latest/developerguide/ListJobsByStatus.html
- data ListJobsByStatus
- listJobsByStatus :: Text -> ListJobsByStatus
- ljbsAscending :: Lens' ListJobsByStatus (Maybe Text)
- ljbsPageToken :: Lens' ListJobsByStatus (Maybe Text)
- ljbsStatus :: Lens' ListJobsByStatus Text
- data ListJobsByStatusResponse
- listJobsByStatusResponse :: ListJobsByStatusResponse
- ljbsrJobs :: Lens' ListJobsByStatusResponse [Job']
- ljbsrNextPageToken :: Lens' ListJobsByStatusResponse (Maybe Text)
Request
data ListJobsByStatus Source
Request constructor
ListJobsByStatus
constructor.
The fields accessible through corresponding lenses are:
Request lenses
ljbsAscending :: Lens' ListJobsByStatus (Maybe Text) Source
To list jobs in chronological order by the date and time that they were
submitted, enter true
. To list jobs in reverse chronological order, enter false
.
ljbsPageToken :: Lens' ListJobsByStatus (Maybe Text) Source
When Elastic Transcoder returns more than one page of results, use pageToken
in subsequent GET
requests to get each successive page of results.
ljbsStatus :: Lens' ListJobsByStatus Text Source
To get information about all of the jobs associated with the current AWS
account that have a given status, specify the following status: Submitted
, Progressing
, Complete
, Canceled
, or Error
.
Response
Response constructor
listJobsByStatusResponse :: ListJobsByStatusResponse Source
ListJobsByStatusResponse
constructor.
The fields accessible through corresponding lenses are:
ljbsrJobs
::
[Job'
]ljbsrNextPageToken
::
Maybe
Text
Response lenses
ljbsrJobs :: Lens' ListJobsByStatusResponse [Job'] Source
An array of Job
objects that have the specified status.
ljbsrNextPageToken :: Lens' ListJobsByStatusResponse (Maybe Text) Source
A value that you use to access the second and subsequent pages of results,
if any. When the jobs in the specified pipeline fit on one page or when
you've reached the last page of results, the value of NextPageToken
is null
.