Skip to content

Describe Retraining Scheduler

lookoutequipment_describe_retraining_scheduler R Documentation

Provides a description of the retraining scheduler, including information such as the model name and retraining parameters

Description

Provides a description of the retraining scheduler, including information such as the model name and retraining parameters.

Usage

lookoutequipment_describe_retraining_scheduler(ModelName)

Arguments

ModelName

[required] The name of the model that the retraining scheduler is attached to.

Value

A list with the following syntax:

list(
  ModelName = "string",
  ModelArn = "string",
  RetrainingStartDate = as.POSIXct(
    "2015-01-01"
  ),
  RetrainingFrequency = "string",
  LookbackWindow = "string",
  Status = "PENDING"|"RUNNING"|"STOPPING"|"STOPPED",
  PromoteMode = "MANAGED"|"MANUAL",
  CreatedAt = as.POSIXct(
    "2015-01-01"
  ),
  UpdatedAt = as.POSIXct(
    "2015-01-01"
  )
)

Request syntax

svc$describe_retraining_scheduler(
  ModelName = "string"
)

Examples

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

## End(Not run)