List Algorithms
| sagemaker_list_algorithms | R Documentation |
Lists the machine learning algorithms that have been created¶
Description¶
Lists the machine learning algorithms that have been created.
Usage¶
sagemaker_list_algorithms(CreationTimeAfter, CreationTimeBefore,
MaxResults, NameContains, NextToken, SortBy, SortOrder)
Arguments¶
CreationTimeAfterA filter that returns only algorithms created after the specified time (timestamp).
CreationTimeBeforeA filter that returns only algorithms created before the specified time (timestamp).
MaxResultsThe maximum number of algorithms to return in the response.
NameContainsA string in the algorithm name. This filter returns only algorithms whose name contains the specified string.
NextTokenIf the response to a previous
list_algorithmsrequest was truncated, the response includes aNextToken. To retrieve the next set of algorithms, use the token in the next request.SortByThe parameter by which to sort the results. The default is
CreationTime.SortOrderThe sort order for the results. The default is
Ascending.
Value¶
A list with the following syntax:
list(
AlgorithmSummaryList = list(
list(
AlgorithmName = "string",
AlgorithmArn = "string",
AlgorithmDescription = "string",
CreationTime = as.POSIXct(
"2015-01-01"
),
AlgorithmStatus = "Pending"|"InProgress"|"Completed"|"Failed"|"Deleting"
)
),
NextToken = "string"
)