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 |
Fetches the execution history of the flow.
Synopsis
- data DescribeFlowExecutionRecords = DescribeFlowExecutionRecords' {}
- newDescribeFlowExecutionRecords :: Text -> DescribeFlowExecutionRecords
- describeFlowExecutionRecords_nextToken :: Lens' DescribeFlowExecutionRecords (Maybe Text)
- describeFlowExecutionRecords_maxResults :: Lens' DescribeFlowExecutionRecords (Maybe Natural)
- describeFlowExecutionRecords_flowName :: Lens' DescribeFlowExecutionRecords Text
- data DescribeFlowExecutionRecordsResponse = DescribeFlowExecutionRecordsResponse' {}
- newDescribeFlowExecutionRecordsResponse :: Int -> DescribeFlowExecutionRecordsResponse
- describeFlowExecutionRecordsResponse_flowExecutions :: Lens' DescribeFlowExecutionRecordsResponse (Maybe [ExecutionRecord])
- describeFlowExecutionRecordsResponse_nextToken :: Lens' DescribeFlowExecutionRecordsResponse (Maybe Text)
- describeFlowExecutionRecordsResponse_httpStatus :: Lens' DescribeFlowExecutionRecordsResponse Int
Creating a Request
data DescribeFlowExecutionRecords Source #
See: newDescribeFlowExecutionRecords
smart constructor.
DescribeFlowExecutionRecords' | |
|
Instances
newDescribeFlowExecutionRecords Source #
Create a value of DescribeFlowExecutionRecords
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:DescribeFlowExecutionRecords'
, describeFlowExecutionRecords_nextToken
- The pagination token for the next page of data.
$sel:maxResults:DescribeFlowExecutionRecords'
, describeFlowExecutionRecords_maxResults
- Specifies the maximum number of items that should be returned in the
result set. The default for maxResults
is 20 (for all paginated API
operations).
$sel:flowName:DescribeFlowExecutionRecords'
, describeFlowExecutionRecords_flowName
- The specified name of the flow. Spaces are not allowed. Use underscores
(_) or hyphens (-) only.
Request Lenses
describeFlowExecutionRecords_nextToken :: Lens' DescribeFlowExecutionRecords (Maybe Text) Source #
The pagination token for the next page of data.
describeFlowExecutionRecords_maxResults :: Lens' DescribeFlowExecutionRecords (Maybe Natural) Source #
Specifies the maximum number of items that should be returned in the
result set. The default for maxResults
is 20 (for all paginated API
operations).
describeFlowExecutionRecords_flowName :: Lens' DescribeFlowExecutionRecords Text Source #
The specified name of the flow. Spaces are not allowed. Use underscores (_) or hyphens (-) only.
Destructuring the Response
data DescribeFlowExecutionRecordsResponse Source #
See: newDescribeFlowExecutionRecordsResponse
smart constructor.
DescribeFlowExecutionRecordsResponse' | |
|
Instances
newDescribeFlowExecutionRecordsResponse Source #
Create a value of DescribeFlowExecutionRecordsResponse
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:flowExecutions:DescribeFlowExecutionRecordsResponse'
, describeFlowExecutionRecordsResponse_flowExecutions
- Returns a list of all instances when this flow was run.
$sel:nextToken:DescribeFlowExecutionRecords'
, describeFlowExecutionRecordsResponse_nextToken
- The pagination token for the next page of data.
$sel:httpStatus:DescribeFlowExecutionRecordsResponse'
, describeFlowExecutionRecordsResponse_httpStatus
- The response's http status code.
Response Lenses
describeFlowExecutionRecordsResponse_flowExecutions :: Lens' DescribeFlowExecutionRecordsResponse (Maybe [ExecutionRecord]) Source #
Returns a list of all instances when this flow was run.
describeFlowExecutionRecordsResponse_nextToken :: Lens' DescribeFlowExecutionRecordsResponse (Maybe Text) Source #
The pagination token for the next page of data.
describeFlowExecutionRecordsResponse_httpStatus :: Lens' DescribeFlowExecutionRecordsResponse Int Source #
The response's http status code.