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 properties of all entity recognizers that you created, including recognizers currently in training. Allows you to filter the list of recognizers based on criteria such as status and submission time. This call returns up to 500 entity recognizers in the list, with a default number of 100 recognizers in the list.
The results of this list are not in any particular order. Please get the list and sort locally if needed.
This operation returns paginated results.
Synopsis
- data ListEntityRecognizers = ListEntityRecognizers' {}
- newListEntityRecognizers :: ListEntityRecognizers
- listEntityRecognizers_nextToken :: Lens' ListEntityRecognizers (Maybe Text)
- listEntityRecognizers_filter :: Lens' ListEntityRecognizers (Maybe EntityRecognizerFilter)
- listEntityRecognizers_maxResults :: Lens' ListEntityRecognizers (Maybe Natural)
- data ListEntityRecognizersResponse = ListEntityRecognizersResponse' {}
- newListEntityRecognizersResponse :: Int -> ListEntityRecognizersResponse
- listEntityRecognizersResponse_nextToken :: Lens' ListEntityRecognizersResponse (Maybe Text)
- listEntityRecognizersResponse_entityRecognizerPropertiesList :: Lens' ListEntityRecognizersResponse (Maybe [EntityRecognizerProperties])
- listEntityRecognizersResponse_httpStatus :: Lens' ListEntityRecognizersResponse Int
Creating a Request
data ListEntityRecognizers Source #
See: newListEntityRecognizers
smart constructor.
ListEntityRecognizers' | |
|
Instances
newListEntityRecognizers :: ListEntityRecognizers Source #
Create a value of ListEntityRecognizers
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:ListEntityRecognizers'
, listEntityRecognizers_nextToken
- Identifies the next page of results to return.
$sel:filter':ListEntityRecognizers'
, listEntityRecognizers_filter
- Filters the list of entities returned. You can filter on Status
,
SubmitTimeBefore
, or SubmitTimeAfter
. You can only set one filter at
a time.
$sel:maxResults:ListEntityRecognizers'
, listEntityRecognizers_maxResults
- The maximum number of results to return on each page. The default is
100.
Request Lenses
listEntityRecognizers_nextToken :: Lens' ListEntityRecognizers (Maybe Text) Source #
Identifies the next page of results to return.
listEntityRecognizers_filter :: Lens' ListEntityRecognizers (Maybe EntityRecognizerFilter) Source #
Filters the list of entities returned. You can filter on Status
,
SubmitTimeBefore
, or SubmitTimeAfter
. You can only set one filter at
a time.
listEntityRecognizers_maxResults :: Lens' ListEntityRecognizers (Maybe Natural) Source #
The maximum number of results to return on each page. The default is 100.
Destructuring the Response
data ListEntityRecognizersResponse Source #
See: newListEntityRecognizersResponse
smart constructor.
ListEntityRecognizersResponse' | |
|
Instances
newListEntityRecognizersResponse Source #
Create a value of ListEntityRecognizersResponse
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:ListEntityRecognizers'
, listEntityRecognizersResponse_nextToken
- Identifies the next page of results to return.
$sel:entityRecognizerPropertiesList:ListEntityRecognizersResponse'
, listEntityRecognizersResponse_entityRecognizerPropertiesList
- The list of properties of an entity recognizer.
$sel:httpStatus:ListEntityRecognizersResponse'
, listEntityRecognizersResponse_httpStatus
- The response's http status code.
Response Lenses
listEntityRecognizersResponse_nextToken :: Lens' ListEntityRecognizersResponse (Maybe Text) Source #
Identifies the next page of results to return.
listEntityRecognizersResponse_entityRecognizerPropertiesList :: Lens' ListEntityRecognizersResponse (Maybe [EntityRecognizerProperties]) Source #
The list of properties of an entity recognizer.
listEntityRecognizersResponse_httpStatus :: Lens' ListEntityRecognizersResponse Int Source #
The response's http status code.