Copyright | (c) 2013-2018 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 |
Language | Haskell2010 |
Gets a summary of the most recent executions for a pipeline.
- listPipelineExecutions :: Text -> ListPipelineExecutions
- data ListPipelineExecutions
- lpeNextToken :: Lens' ListPipelineExecutions (Maybe Text)
- lpeMaxResults :: Lens' ListPipelineExecutions (Maybe Natural)
- lpePipelineName :: Lens' ListPipelineExecutions Text
- listPipelineExecutionsResponse :: Int -> ListPipelineExecutionsResponse
- data ListPipelineExecutionsResponse
- lpersNextToken :: Lens' ListPipelineExecutionsResponse (Maybe Text)
- lpersPipelineExecutionSummaries :: Lens' ListPipelineExecutionsResponse [PipelineExecutionSummary]
- lpersResponseStatus :: Lens' ListPipelineExecutionsResponse Int
Creating a Request
listPipelineExecutions Source #
Creates a value of ListPipelineExecutions
with the minimum fields required to make a request.
Use one of the following lenses to modify other fields as desired:
lpeNextToken
- The token that was returned from the previous ListPipelineExecutions call, which can be used to return the next set of pipeline executions in the list.lpeMaxResults
- The maximum number of results to return in a single call. To retrieve the remaining results, make another call with the returned nextToken value. The available pipeline execution history is limited to the most recent 12 months, based on pipeline execution start times. Default value is 100.lpePipelineName
- The name of the pipeline for which you want to get execution summary information.
data ListPipelineExecutions Source #
Represents the input of a ListPipelineExecutions action.
See: listPipelineExecutions
smart constructor.
Request Lenses
lpeNextToken :: Lens' ListPipelineExecutions (Maybe Text) Source #
The token that was returned from the previous ListPipelineExecutions call, which can be used to return the next set of pipeline executions in the list.
lpeMaxResults :: Lens' ListPipelineExecutions (Maybe Natural) Source #
The maximum number of results to return in a single call. To retrieve the remaining results, make another call with the returned nextToken value. The available pipeline execution history is limited to the most recent 12 months, based on pipeline execution start times. Default value is 100.
lpePipelineName :: Lens' ListPipelineExecutions Text Source #
The name of the pipeline for which you want to get execution summary information.
Destructuring the Response
listPipelineExecutionsResponse Source #
Creates a value of ListPipelineExecutionsResponse
with the minimum fields required to make a request.
Use one of the following lenses to modify other fields as desired:
lpersNextToken
- A token that can be used in the next ListPipelineExecutions call. To view all items in the list, continue to call this operation with each subsequent token until no more nextToken values are returned.lpersPipelineExecutionSummaries
- A list of executions in the history of a pipeline.lpersResponseStatus
- -- | The response status code.
data ListPipelineExecutionsResponse Source #
Represents the output of a ListPipelineExecutions action.
See: listPipelineExecutionsResponse
smart constructor.
Response Lenses
lpersNextToken :: Lens' ListPipelineExecutionsResponse (Maybe Text) Source #
A token that can be used in the next ListPipelineExecutions call. To view all items in the list, continue to call this operation with each subsequent token until no more nextToken values are returned.
lpersPipelineExecutionSummaries :: Lens' ListPipelineExecutionsResponse [PipelineExecutionSummary] Source #
A list of executions in the history of a pipeline.
lpersResponseStatus :: Lens' ListPipelineExecutionsResponse Int Source #
- - | The response status code.