List Models
| sagemaker_list_models | R Documentation |
Lists models created with the CreateModel API¶
Description¶
Lists models created with the create_model API.
Usage¶
sagemaker_list_models(SortBy, SortOrder, NextToken, MaxResults,
NameContains, CreationTimeBefore, CreationTimeAfter)
Arguments¶
SortBySorts the list of results. The default is
CreationTime.SortOrderThe sort order for results. The default is
Descending.NextTokenIf 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.MaxResultsThe maximum number of models to return in the response.
NameContainsA string in the model name. This filter returns only models whose name contains the specified string.
CreationTimeBeforeA filter that returns only models created before the specified time (timestamp).
CreationTimeAfterA filter that returns only models with a creation time greater than or equal to the specified time (timestamp).
Value¶
A list with the following syntax:
list(
Models = list(
list(
ModelName = "string",
ModelArn = "string",
CreationTime = as.POSIXct(
"2015-01-01"
)
)
),
NextToken = "string"
)