List Inference Schedulers
| lookoutequipment_list_inference_schedulers | R Documentation |
Retrieves a list of all inference schedulers currently available for your account¶
Description¶
Retrieves a list of all inference schedulers currently available for your account.
Usage¶
lookoutequipment_list_inference_schedulers(NextToken, MaxResults,
InferenceSchedulerNameBeginsWith, ModelName, Status)
Arguments¶
NextTokenAn opaque pagination token indicating where to continue the listing of inference schedulers.
MaxResultsSpecifies the maximum number of inference schedulers to list.
InferenceSchedulerNameBeginsWithThe beginning of the name of the inference schedulers to be listed.
ModelNameThe name of the machine learning model used by the inference scheduler to be listed.
StatusSpecifies the current status of the inference schedulers.
Value¶
A list with the following syntax:
list(
NextToken = "string",
InferenceSchedulerSummaries = list(
list(
ModelName = "string",
ModelArn = "string",
InferenceSchedulerName = "string",
InferenceSchedulerArn = "string",
Status = "PENDING"|"RUNNING"|"STOPPING"|"STOPPED",
DataDelayOffsetInMinutes = 123,
DataUploadFrequency = "PT5M"|"PT10M"|"PT15M"|"PT30M"|"PT1H",
LatestInferenceResult = "ANOMALOUS"|"NORMAL"
)
)
)