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 |
Gets a list of the pipeline executions.
This operation returns paginated results.
Synopsis
- data ListPipelineExecutions = ListPipelineExecutions' {}
- newListPipelineExecutions :: Text -> ListPipelineExecutions
- listPipelineExecutions_createdAfter :: Lens' ListPipelineExecutions (Maybe UTCTime)
- listPipelineExecutions_nextToken :: Lens' ListPipelineExecutions (Maybe Text)
- listPipelineExecutions_sortOrder :: Lens' ListPipelineExecutions (Maybe SortOrder)
- listPipelineExecutions_maxResults :: Lens' ListPipelineExecutions (Maybe Natural)
- listPipelineExecutions_createdBefore :: Lens' ListPipelineExecutions (Maybe UTCTime)
- listPipelineExecutions_sortBy :: Lens' ListPipelineExecutions (Maybe SortPipelineExecutionsBy)
- listPipelineExecutions_pipelineName :: Lens' ListPipelineExecutions Text
- data ListPipelineExecutionsResponse = ListPipelineExecutionsResponse' {}
- newListPipelineExecutionsResponse :: Int -> ListPipelineExecutionsResponse
- listPipelineExecutionsResponse_nextToken :: Lens' ListPipelineExecutionsResponse (Maybe Text)
- listPipelineExecutionsResponse_pipelineExecutionSummaries :: Lens' ListPipelineExecutionsResponse (Maybe [PipelineExecutionSummary])
- listPipelineExecutionsResponse_httpStatus :: Lens' ListPipelineExecutionsResponse Int
Creating a Request
data ListPipelineExecutions Source #
See: newListPipelineExecutions
smart constructor.
ListPipelineExecutions' | |
|
Instances
newListPipelineExecutions Source #
Create a value of ListPipelineExecutions
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:createdAfter:ListPipelineExecutions'
, listPipelineExecutions_createdAfter
- A filter that returns the pipeline executions that were created after a
specified time.
$sel:nextToken:ListPipelineExecutions'
, listPipelineExecutions_nextToken
- If the result of the previous ListPipelineExecutions
request was
truncated, the response includes a NextToken
. To retrieve the next set
of pipeline executions, use the token in the next request.
$sel:sortOrder:ListPipelineExecutions'
, listPipelineExecutions_sortOrder
- The sort order for results.
$sel:maxResults:ListPipelineExecutions'
, listPipelineExecutions_maxResults
- The maximum number of pipeline executions to return in the response.
$sel:createdBefore:ListPipelineExecutions'
, listPipelineExecutions_createdBefore
- A filter that returns the pipeline executions that were created before a
specified time.
$sel:sortBy:ListPipelineExecutions'
, listPipelineExecutions_sortBy
- The field by which to sort results. The default is CreatedTime
.
$sel:pipelineName:ListPipelineExecutions'
, listPipelineExecutions_pipelineName
- The name of the pipeline.
Request Lenses
listPipelineExecutions_createdAfter :: Lens' ListPipelineExecutions (Maybe UTCTime) Source #
A filter that returns the pipeline executions that were created after a specified time.
listPipelineExecutions_nextToken :: Lens' ListPipelineExecutions (Maybe Text) Source #
If the result of the previous ListPipelineExecutions
request was
truncated, the response includes a NextToken
. To retrieve the next set
of pipeline executions, use the token in the next request.
listPipelineExecutions_sortOrder :: Lens' ListPipelineExecutions (Maybe SortOrder) Source #
The sort order for results.
listPipelineExecutions_maxResults :: Lens' ListPipelineExecutions (Maybe Natural) Source #
The maximum number of pipeline executions to return in the response.
listPipelineExecutions_createdBefore :: Lens' ListPipelineExecutions (Maybe UTCTime) Source #
A filter that returns the pipeline executions that were created before a specified time.
listPipelineExecutions_sortBy :: Lens' ListPipelineExecutions (Maybe SortPipelineExecutionsBy) Source #
The field by which to sort results. The default is CreatedTime
.
listPipelineExecutions_pipelineName :: Lens' ListPipelineExecutions Text Source #
The name of the pipeline.
Destructuring the Response
data ListPipelineExecutionsResponse Source #
See: newListPipelineExecutionsResponse
smart constructor.
ListPipelineExecutionsResponse' | |
|
Instances
newListPipelineExecutionsResponse Source #
Create a value of ListPipelineExecutionsResponse
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:nextToken:ListPipelineExecutions'
, listPipelineExecutionsResponse_nextToken
- If the result of the previous ListPipelineExecutions
request was
truncated, the response includes a NextToken
. To retrieve the next set
of pipeline executions, use the token in the next request.
$sel:pipelineExecutionSummaries:ListPipelineExecutionsResponse'
, listPipelineExecutionsResponse_pipelineExecutionSummaries
- Contains a sorted list of pipeline execution summary objects matching
the specified filters. Each run summary includes the Amazon Resource
Name (ARN) of the pipeline execution, the run date, and the status. This
list can be empty.
$sel:httpStatus:ListPipelineExecutionsResponse'
, listPipelineExecutionsResponse_httpStatus
- The response's http status code.
Response Lenses
listPipelineExecutionsResponse_nextToken :: Lens' ListPipelineExecutionsResponse (Maybe Text) Source #
If the result of the previous ListPipelineExecutions
request was
truncated, the response includes a NextToken
. To retrieve the next set
of pipeline executions, use the token in the next request.
listPipelineExecutionsResponse_pipelineExecutionSummaries :: Lens' ListPipelineExecutionsResponse (Maybe [PipelineExecutionSummary]) Source #
Contains a sorted list of pipeline execution summary objects matching the specified filters. Each run summary includes the Amazon Resource Name (ARN) of the pipeline execution, the run date, and the status. This list can be empty.
listPipelineExecutionsResponse_httpStatus :: Lens' ListPipelineExecutionsResponse Int Source #
The response's http status code.