| Copyright | (c) 2013-2023 Brendan Hay | 
|---|---|
| License | Mozilla Public License, v. 2.0. | 
| Maintainer | Brendan Hay | 
| Stability | auto-generated | 
| Portability | non-portable (GHC extensions) | 
| Safe Haskell | Safe-Inferred | 
| Language | Haskell2010 | 
Amazonka.SageMaker.ListEndpointConfigs
Description
Lists endpoint configurations.
This operation returns paginated results.
Synopsis
- data ListEndpointConfigs = ListEndpointConfigs' {}
 - newListEndpointConfigs :: ListEndpointConfigs
 - listEndpointConfigs_creationTimeAfter :: Lens' ListEndpointConfigs (Maybe UTCTime)
 - listEndpointConfigs_creationTimeBefore :: Lens' ListEndpointConfigs (Maybe UTCTime)
 - listEndpointConfigs_maxResults :: Lens' ListEndpointConfigs (Maybe Natural)
 - listEndpointConfigs_nameContains :: Lens' ListEndpointConfigs (Maybe Text)
 - listEndpointConfigs_nextToken :: Lens' ListEndpointConfigs (Maybe Text)
 - listEndpointConfigs_sortBy :: Lens' ListEndpointConfigs (Maybe EndpointConfigSortKey)
 - listEndpointConfigs_sortOrder :: Lens' ListEndpointConfigs (Maybe OrderKey)
 - data ListEndpointConfigsResponse = ListEndpointConfigsResponse' {}
 - newListEndpointConfigsResponse :: Int -> ListEndpointConfigsResponse
 - listEndpointConfigsResponse_nextToken :: Lens' ListEndpointConfigsResponse (Maybe Text)
 - listEndpointConfigsResponse_httpStatus :: Lens' ListEndpointConfigsResponse Int
 - listEndpointConfigsResponse_endpointConfigs :: Lens' ListEndpointConfigsResponse [EndpointConfigSummary]
 
Creating a Request
data ListEndpointConfigs Source #
See: newListEndpointConfigs smart constructor.
Constructors
| ListEndpointConfigs' | |
Fields 
  | |
Instances
newListEndpointConfigs :: ListEndpointConfigs Source #
Create a value of ListEndpointConfigs 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:ListEndpointConfigs', listEndpointConfigs_creationTimeAfter - A filter that returns only endpoint configurations with a creation time
 greater than or equal to the specified time (timestamp).
$sel:creationTimeBefore:ListEndpointConfigs', listEndpointConfigs_creationTimeBefore - A filter that returns only endpoint configurations created before the
 specified time (timestamp).
$sel:maxResults:ListEndpointConfigs', listEndpointConfigs_maxResults - The maximum number of training jobs to return in the response.
$sel:nameContains:ListEndpointConfigs', listEndpointConfigs_nameContains - A string in the endpoint configuration name. This filter returns only
 endpoint configurations whose name contains the specified string.
ListEndpointConfigs, listEndpointConfigs_nextToken - If the result of the previous ListEndpointConfig request was
 truncated, the response includes a NextToken. To retrieve the next set
 of endpoint configurations, use the token in the next request.
$sel:sortBy:ListEndpointConfigs', listEndpointConfigs_sortBy - The field to sort results by. The default is CreationTime.
$sel:sortOrder:ListEndpointConfigs', listEndpointConfigs_sortOrder - The sort order for results. The default is Descending.
Request Lenses
listEndpointConfigs_creationTimeAfter :: Lens' ListEndpointConfigs (Maybe UTCTime) Source #
A filter that returns only endpoint configurations with a creation time greater than or equal to the specified time (timestamp).
listEndpointConfigs_creationTimeBefore :: Lens' ListEndpointConfigs (Maybe UTCTime) Source #
A filter that returns only endpoint configurations created before the specified time (timestamp).
listEndpointConfigs_maxResults :: Lens' ListEndpointConfigs (Maybe Natural) Source #
The maximum number of training jobs to return in the response.
listEndpointConfigs_nameContains :: Lens' ListEndpointConfigs (Maybe Text) Source #
A string in the endpoint configuration name. This filter returns only endpoint configurations whose name contains the specified string.
listEndpointConfigs_nextToken :: Lens' ListEndpointConfigs (Maybe Text) Source #
If the result of the previous ListEndpointConfig request was
 truncated, the response includes a NextToken. To retrieve the next set
 of endpoint configurations, use the token in the next request.
listEndpointConfigs_sortBy :: Lens' ListEndpointConfigs (Maybe EndpointConfigSortKey) Source #
The field to sort results by. The default is CreationTime.
listEndpointConfigs_sortOrder :: Lens' ListEndpointConfigs (Maybe OrderKey) Source #
The sort order for results. The default is Descending.
Destructuring the Response
data ListEndpointConfigsResponse Source #
See: newListEndpointConfigsResponse smart constructor.
Constructors
| ListEndpointConfigsResponse' | |
Fields 
  | |
Instances
newListEndpointConfigsResponse Source #
Create a value of ListEndpointConfigsResponse 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:
ListEndpointConfigs, listEndpointConfigsResponse_nextToken - If the response is truncated, SageMaker returns this token. To retrieve
 the next set of endpoint configurations, use it in the subsequent
 request
$sel:httpStatus:ListEndpointConfigsResponse', listEndpointConfigsResponse_httpStatus - The response's http status code.
$sel:endpointConfigs:ListEndpointConfigsResponse', listEndpointConfigsResponse_endpointConfigs - An array of endpoint configurations.
Response Lenses
listEndpointConfigsResponse_nextToken :: Lens' ListEndpointConfigsResponse (Maybe Text) Source #
If the response is truncated, SageMaker returns this token. To retrieve the next set of endpoint configurations, use it in the subsequent request
listEndpointConfigsResponse_httpStatus :: Lens' ListEndpointConfigsResponse Int Source #
The response's http status code.
listEndpointConfigsResponse_endpointConfigs :: Lens' ListEndpointConfigsResponse [EndpointConfigSummary] Source #
An array of endpoint configurations.