Copyright | (c) 2013-2021 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay <brendan.g.hay+amazonka@gmail.com> |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | None |
The ListPipelines operation gets a list of the pipelines associated with the current AWS account.
This operation returns paginated results.
Synopsis
- data ListPipelines = ListPipelines' {}
- newListPipelines :: ListPipelines
- listPipelines_ascending :: Lens' ListPipelines (Maybe Text)
- listPipelines_pageToken :: Lens' ListPipelines (Maybe Text)
- data ListPipelinesResponse = ListPipelinesResponse' {
- nextPageToken :: Maybe Text
- pipelines :: Maybe [Pipeline]
- httpStatus :: Int
- newListPipelinesResponse :: Int -> ListPipelinesResponse
- listPipelinesResponse_nextPageToken :: Lens' ListPipelinesResponse (Maybe Text)
- listPipelinesResponse_pipelines :: Lens' ListPipelinesResponse (Maybe [Pipeline])
- listPipelinesResponse_httpStatus :: Lens' ListPipelinesResponse Int
Creating a Request
data ListPipelines Source #
The ListPipelineRequest
structure.
See: newListPipelines
smart constructor.
ListPipelines' | |
|
Instances
newListPipelines :: ListPipelines Source #
Create a value of ListPipelines
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:ascending:ListPipelines'
, listPipelines_ascending
- To list pipelines in chronological order by the date and time that they
were created, enter true
. To list pipelines in reverse chronological
order, enter false
.
$sel:pageToken:ListPipelines'
, listPipelines_pageToken
- When Elastic Transcoder returns more than one page of results, use
pageToken
in subsequent GET
requests to get each successive page of
results.
Request Lenses
listPipelines_ascending :: Lens' ListPipelines (Maybe Text) Source #
To list pipelines in chronological order by the date and time that they
were created, enter true
. To list pipelines in reverse chronological
order, enter false
.
listPipelines_pageToken :: Lens' ListPipelines (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.
Destructuring the Response
data ListPipelinesResponse Source #
A list of the pipelines associated with the current AWS account.
See: newListPipelinesResponse
smart constructor.
ListPipelinesResponse' | |
|
Instances
newListPipelinesResponse Source #
Create a value of ListPipelinesResponse
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:nextPageToken:ListPipelinesResponse'
, listPipelinesResponse_nextPageToken
- A value that you use to access the second and subsequent pages of
results, if any. When the pipelines fit on one page or when you've
reached the last page of results, the value of NextPageToken
is
null
.
$sel:pipelines:ListPipelinesResponse'
, listPipelinesResponse_pipelines
- An array of Pipeline
objects.
$sel:httpStatus:ListPipelinesResponse'
, listPipelinesResponse_httpStatus
- The response's http status code.
Response Lenses
listPipelinesResponse_nextPageToken :: Lens' ListPipelinesResponse (Maybe Text) Source #
A value that you use to access the second and subsequent pages of
results, if any. When the pipelines fit on one page or when you've
reached the last page of results, the value of NextPageToken
is
null
.
listPipelinesResponse_pipelines :: Lens' ListPipelinesResponse (Maybe [Pipeline]) Source #
An array of Pipeline
objects.
listPipelinesResponse_httpStatus :: Lens' ListPipelinesResponse Int Source #
The response's http status code.