List Endpoint Configs
| sagemaker_list_endpoint_configs | R Documentation |
Lists endpoint configurations¶
Description¶
Lists endpoint configurations.
Usage¶
sagemaker_list_endpoint_configs(SortBy, SortOrder, NextToken,
MaxResults, NameContains, CreationTimeBefore, CreationTimeAfter)
Arguments¶
SortByThe field to sort results by. The default is
CreationTime.SortOrderThe sort order for results. The default is
Descending.NextTokenIf the result of the previous
ListEndpointConfigrequest was truncated, the response includes aNextToken. To retrieve the next set of endpoint configurations, use the token in the next request.MaxResultsThe maximum number of training jobs to return in the response.
NameContainsA string in the endpoint configuration name. This filter returns only endpoint configurations whose name contains the specified string.
CreationTimeBeforeA filter that returns only endpoint configurations created before the specified time (timestamp).
CreationTimeAfterA filter that returns only endpoint configurations with a creation time greater than or equal to the specified time (timestamp).
Value¶
A list with the following syntax:
list(
EndpointConfigs = list(
list(
EndpointConfigName = "string",
EndpointConfigArn = "string",
CreationTime = as.POSIXct(
"2015-01-01"
)
)
),
NextToken = "string"
)