List Retraining Schedulers
| lookoutequipment_list_retraining_schedulers | R Documentation |
Lists all retraining schedulers in your account, filtering by model name prefix and status¶
Description¶
Lists all retraining schedulers in your account, filtering by model name prefix and status.
Usage¶
Arguments¶
ModelNameBeginsWithSpecify this field to only list retraining schedulers whose machine learning models begin with the value you specify.
StatusSpecify this field to only list retraining schedulers whose status matches the value you specify.
NextTokenIf the number of results exceeds the maximum, a pagination token is returned. Use the token in the request to show the next page of retraining schedulers.
MaxResultsSpecifies the maximum number of retraining schedulers to list.
Value¶
A list with the following syntax:
list(
RetrainingSchedulerSummaries = list(
list(
ModelName = "string",
ModelArn = "string",
Status = "PENDING"|"RUNNING"|"STOPPING"|"STOPPED",
RetrainingStartDate = as.POSIXct(
"2015-01-01"
),
RetrainingFrequency = "string",
LookbackWindow = "string"
)
),
NextToken = "string"
)
Request syntax¶
svc$list_retraining_schedulers(
ModelNameBeginsWith = "string",
Status = "PENDING"|"RUNNING"|"STOPPING"|"STOPPED",
NextToken = "string",
MaxResults = 123
)