Describe Inference Scheduler
lookoutequipment_describe_inference_scheduler | R Documentation |
Specifies information about the inference scheduler being used, including name, model, status, and associated metadata¶
Description¶
Specifies information about the inference scheduler being used, including name, model, status, and associated metadata
Usage¶
Arguments¶
InferenceSchedulerName
[required] The name of the inference scheduler being described.
Value¶
A list with the following syntax:
list(
ModelArn = "string",
ModelName = "string",
InferenceSchedulerName = "string",
InferenceSchedulerArn = "string",
Status = "PENDING"|"RUNNING"|"STOPPING"|"STOPPED",
DataDelayOffsetInMinutes = 123,
DataUploadFrequency = "PT5M"|"PT10M"|"PT15M"|"PT30M"|"PT1H",
CreatedAt = as.POSIXct(
"2015-01-01"
),
UpdatedAt = as.POSIXct(
"2015-01-01"
),
DataInputConfiguration = list(
S3InputConfiguration = list(
Bucket = "string",
Prefix = "string"
),
InputTimeZoneOffset = "string",
InferenceInputNameConfiguration = list(
TimestampFormat = "string",
ComponentTimestampDelimiter = "string"
)
),
DataOutputConfiguration = list(
S3OutputConfiguration = list(
Bucket = "string",
Prefix = "string"
),
KmsKeyId = "string"
),
RoleArn = "string",
ServerSideKmsKeyId = "string",
LatestInferenceResult = "ANOMALOUS"|"NORMAL"
)