SageMaker / Client / list_endpoint_configs
list_endpoint_configs#
- SageMaker.Client.list_endpoint_configs(**kwargs)#
Lists endpoint configurations.
See also: AWS API Documentation
Request Syntax
response = client.list_endpoint_configs( SortBy='Name'|'CreationTime', SortOrder='Ascending'|'Descending', NextToken='string', MaxResults=123, NameContains='string', CreationTimeBefore=datetime(2015, 1, 1), CreationTimeAfter=datetime(2015, 1, 1) )
- Parameters:
SortBy (string) – The field to sort results by. The default is
CreationTime
.SortOrder (string) – The sort order for results. The default is
Descending
.NextToken (string) – If the result of the previous
ListEndpointConfig
request was truncated, the response includes aNextToken
. To retrieve the next set of endpoint configurations, use the token in the next request.MaxResults (integer) – The maximum number of training jobs to return in the response.
NameContains (string) – A string in the endpoint configuration name. This filter returns only endpoint configurations whose name contains the specified string.
CreationTimeBefore (datetime) – A filter that returns only endpoint configurations created before the specified time (timestamp).
CreationTimeAfter (datetime) – A filter that returns only endpoint configurations with a creation time greater than or equal to the specified time (timestamp).
- Return type:
dict
- Returns:
Response Syntax
{ 'EndpointConfigs': [ { 'EndpointConfigName': 'string', 'EndpointConfigArn': 'string', 'CreationTime': datetime(2015, 1, 1) }, ], 'NextToken': 'string' }
Response Structure
(dict) –
EndpointConfigs (list) –
An array of endpoint configurations.
(dict) –
Provides summary information for an endpoint configuration.
EndpointConfigName (string) –
The name of the endpoint configuration.
EndpointConfigArn (string) –
The Amazon Resource Name (ARN) of the endpoint configuration.
CreationTime (datetime) –
A timestamp that shows when the endpoint configuration was created.
NextToken (string) –
If the response is truncated, SageMaker returns this token. To retrieve the next set of endpoint configurations, use it in the subsequent request