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¶
ModelNameBeginsWith
Specify this field to only list retraining schedulers whose machine learning models begin with the value you specify.
Status
Specify this field to only list retraining schedulers whose status matches the value you specify.
NextToken
If 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.
MaxResults
Specifies 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
)