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¶
NextToken |
An opaque pagination token indicating where to continue the listing of inference schedulers. |
MaxResults |
Specifies the maximum number of inference schedulers to list. |
InferenceSchedulerNameBeginsWith |
The beginning of the name of the inference schedulers to be listed. |
ModelName |
The name of the machine learning model used by the inference scheduler to be listed. |
Status |
Specifies 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"
)
)
)
Request syntax¶
svc$list_inference_schedulers(
NextToken = "string",
MaxResults = 123,
InferenceSchedulerNameBeginsWith = "string",
ModelName = "string",
Status = "PENDING"|"RUNNING"|"STOPPING"|"STOPPED"
)