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 |
Lists the pipeline identifiers for all active pipelines that you have permission to access.
This operation returns paginated results.
Synopsis
- data ListPipelines = ListPipelines' {}
- newListPipelines :: ListPipelines
- listPipelines_marker :: Lens' ListPipelines (Maybe Text)
- data ListPipelinesResponse = ListPipelinesResponse' {
- hasMoreResults :: Maybe Bool
- marker :: Maybe Text
- httpStatus :: Int
- pipelineIdList :: [PipelineIdName]
- newListPipelinesResponse :: Int -> ListPipelinesResponse
- listPipelinesResponse_hasMoreResults :: Lens' ListPipelinesResponse (Maybe Bool)
- listPipelinesResponse_marker :: Lens' ListPipelinesResponse (Maybe Text)
- listPipelinesResponse_httpStatus :: Lens' ListPipelinesResponse Int
- listPipelinesResponse_pipelineIdList :: Lens' ListPipelinesResponse [PipelineIdName]
Creating a Request
data ListPipelines Source #
Contains the parameters for ListPipelines.
See: newListPipelines
smart constructor.
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:marker:ListPipelines'
, listPipelines_marker
- The starting point for the results to be returned. For the first call,
this value should be empty. As long as there are more results, continue
to call ListPipelines
with the marker value from the previous call to
retrieve the next set of results.
Request Lenses
listPipelines_marker :: Lens' ListPipelines (Maybe Text) Source #
The starting point for the results to be returned. For the first call,
this value should be empty. As long as there are more results, continue
to call ListPipelines
with the marker value from the previous call to
retrieve the next set of results.
Destructuring the Response
data ListPipelinesResponse Source #
Contains the output of ListPipelines.
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:hasMoreResults:ListPipelinesResponse'
, listPipelinesResponse_hasMoreResults
- Indicates whether there are more results that can be obtained by a
subsequent call.
$sel:marker:ListPipelines'
, listPipelinesResponse_marker
- The starting point for the next page of results. To view the next page
of results, call ListPipelinesOutput
again with this marker value. If
the value is null, there are no more results.
$sel:httpStatus:ListPipelinesResponse'
, listPipelinesResponse_httpStatus
- The response's http status code.
$sel:pipelineIdList:ListPipelinesResponse'
, listPipelinesResponse_pipelineIdList
- The pipeline identifiers. If you require additional information about
the pipelines, you can use these identifiers to call DescribePipelines
and GetPipelineDefinition.
Response Lenses
listPipelinesResponse_hasMoreResults :: Lens' ListPipelinesResponse (Maybe Bool) Source #
Indicates whether there are more results that can be obtained by a subsequent call.
listPipelinesResponse_marker :: Lens' ListPipelinesResponse (Maybe Text) Source #
The starting point for the next page of results. To view the next page
of results, call ListPipelinesOutput
again with this marker value. If
the value is null, there are no more results.
listPipelinesResponse_httpStatus :: Lens' ListPipelinesResponse Int Source #
The response's http status code.
listPipelinesResponse_pipelineIdList :: Lens' ListPipelinesResponse [PipelineIdName] Source #
The pipeline identifiers. If you require additional information about the pipelines, you can use these identifiers to call DescribePipelines and GetPipelineDefinition.