Lists models created with the CreateModel API
Source:R/sagemaker_operations.R
sagemaker_list_models.RdLists models created with the create_model API.
See https://www.paws-r-sdk.com/docs/sagemaker_list_models/ for full documentation.
Usage
sagemaker_list_models(
SortBy = NULL,
SortOrder = NULL,
NextToken = NULL,
MaxResults = NULL,
NameContains = NULL,
CreationTimeBefore = NULL,
CreationTimeAfter = NULL
)Arguments
- SortBy
Sorts the list of results. The default is
CreationTime.- SortOrder
The sort order for results. The default is
Descending.- NextToken
If the response to a previous
list_modelsrequest was truncated, the response includes aNextToken. To retrieve the next set of models, use the token in the next request.- MaxResults
The maximum number of models to return in the response.
- NameContains
A string in the model name. This filter returns only models whose name contains the specified string.
- CreationTimeBefore
A filter that returns only models created before the specified time (timestamp).
- CreationTimeAfter
A filter that returns only models with a creation time greater than or equal to the specified time (timestamp).