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 |
Returns information about the flow definitions in your account.
This operation returns paginated results.
Synopsis
- data ListFlowDefinitions = ListFlowDefinitions' {}
- newListFlowDefinitions :: ListFlowDefinitions
- listFlowDefinitions_creationTimeAfter :: Lens' ListFlowDefinitions (Maybe UTCTime)
- listFlowDefinitions_nextToken :: Lens' ListFlowDefinitions (Maybe Text)
- listFlowDefinitions_sortOrder :: Lens' ListFlowDefinitions (Maybe SortOrder)
- listFlowDefinitions_creationTimeBefore :: Lens' ListFlowDefinitions (Maybe UTCTime)
- listFlowDefinitions_maxResults :: Lens' ListFlowDefinitions (Maybe Natural)
- data ListFlowDefinitionsResponse = ListFlowDefinitionsResponse' {}
- newListFlowDefinitionsResponse :: Int -> ListFlowDefinitionsResponse
- listFlowDefinitionsResponse_nextToken :: Lens' ListFlowDefinitionsResponse (Maybe Text)
- listFlowDefinitionsResponse_httpStatus :: Lens' ListFlowDefinitionsResponse Int
- listFlowDefinitionsResponse_flowDefinitionSummaries :: Lens' ListFlowDefinitionsResponse [FlowDefinitionSummary]
Creating a Request
data ListFlowDefinitions Source #
See: newListFlowDefinitions
smart constructor.
ListFlowDefinitions' | |
|
Instances
newListFlowDefinitions :: ListFlowDefinitions Source #
Create a value of ListFlowDefinitions
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:creationTimeAfter:ListFlowDefinitions'
, listFlowDefinitions_creationTimeAfter
- A filter that returns only flow definitions with a creation time greater
than or equal to the specified timestamp.
$sel:nextToken:ListFlowDefinitions'
, listFlowDefinitions_nextToken
- A token to resume pagination.
$sel:sortOrder:ListFlowDefinitions'
, listFlowDefinitions_sortOrder
- An optional value that specifies whether you want the results sorted in
Ascending
or Descending
order.
$sel:creationTimeBefore:ListFlowDefinitions'
, listFlowDefinitions_creationTimeBefore
- A filter that returns only flow definitions that were created before the
specified timestamp.
$sel:maxResults:ListFlowDefinitions'
, listFlowDefinitions_maxResults
- The total number of items to return. If the total number of available
items is more than the value specified in MaxResults
, then a
NextToken
will be provided in the output that you can use to resume
pagination.
Request Lenses
listFlowDefinitions_creationTimeAfter :: Lens' ListFlowDefinitions (Maybe UTCTime) Source #
A filter that returns only flow definitions with a creation time greater than or equal to the specified timestamp.
listFlowDefinitions_nextToken :: Lens' ListFlowDefinitions (Maybe Text) Source #
A token to resume pagination.
listFlowDefinitions_sortOrder :: Lens' ListFlowDefinitions (Maybe SortOrder) Source #
An optional value that specifies whether you want the results sorted in
Ascending
or Descending
order.
listFlowDefinitions_creationTimeBefore :: Lens' ListFlowDefinitions (Maybe UTCTime) Source #
A filter that returns only flow definitions that were created before the specified timestamp.
listFlowDefinitions_maxResults :: Lens' ListFlowDefinitions (Maybe Natural) Source #
The total number of items to return. If the total number of available
items is more than the value specified in MaxResults
, then a
NextToken
will be provided in the output that you can use to resume
pagination.
Destructuring the Response
data ListFlowDefinitionsResponse Source #
See: newListFlowDefinitionsResponse
smart constructor.
ListFlowDefinitionsResponse' | |
|
Instances
newListFlowDefinitionsResponse Source #
Create a value of ListFlowDefinitionsResponse
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:ListFlowDefinitions'
, listFlowDefinitionsResponse_nextToken
- A token to resume pagination.
$sel:httpStatus:ListFlowDefinitionsResponse'
, listFlowDefinitionsResponse_httpStatus
- The response's http status code.
$sel:flowDefinitionSummaries:ListFlowDefinitionsResponse'
, listFlowDefinitionsResponse_flowDefinitionSummaries
- An array of objects describing the flow definitions.
Response Lenses
listFlowDefinitionsResponse_nextToken :: Lens' ListFlowDefinitionsResponse (Maybe Text) Source #
A token to resume pagination.
listFlowDefinitionsResponse_httpStatus :: Lens' ListFlowDefinitionsResponse Int Source #
The response's http status code.
listFlowDefinitionsResponse_flowDefinitionSummaries :: Lens' ListFlowDefinitionsResponse [FlowDefinitionSummary] Source #
An array of objects describing the flow definitions.