Skip to content

Stop Retraining Scheduler

lookoutequipment_stop_retraining_scheduler R Documentation

Stops a retraining scheduler

Description

Stops a retraining scheduler.

Usage

lookoutequipment_stop_retraining_scheduler(ModelName)

Arguments

ModelName

[required] The name of the model whose retraining scheduler you want to stop.

Value

A list with the following syntax:

list(
  ModelName = "string",
  ModelArn = "string",
  Status = "PENDING"|"RUNNING"|"STOPPING"|"STOPPED"
)

Request syntax

svc$stop_retraining_scheduler(
  ModelName = "string"
)

Examples

## Not run: 
# 
svc$stop_retraining_scheduler(
  ModelName = "sample-model"
)

## End(Not run)