List Inference Executions
| lookoutequipment_list_inference_executions | R Documentation |
Lists all inference executions that have been performed by the specified inference scheduler¶
Description¶
Lists all inference executions that have been performed by the specified inference scheduler.
Usage¶
lookoutequipment_list_inference_executions(NextToken, MaxResults,
InferenceSchedulerName, DataStartTimeAfter, DataEndTimeBefore, Status)
Arguments¶
NextTokenAn opaque pagination token indicating where to continue the listing of inference executions.
MaxResultsSpecifies the maximum number of inference executions to list.
InferenceSchedulerName[required] The name of the inference scheduler for the inference execution listed.
DataStartTimeAfterThe time reference in the inferenced dataset after which Amazon Lookout for Equipment started the inference execution.
DataEndTimeBeforeThe time reference in the inferenced dataset before which Amazon Lookout for Equipment stopped the inference execution.
StatusThe status of the inference execution.
Value¶
A list with the following syntax:
list(
NextToken = "string",
InferenceExecutionSummaries = list(
list(
ModelName = "string",
ModelArn = "string",
InferenceSchedulerName = "string",
InferenceSchedulerArn = "string",
ScheduledStartTime = as.POSIXct(
"2015-01-01"
),
DataStartTime = as.POSIXct(
"2015-01-01"
),
DataEndTime = 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"
),
CustomerResultObject = list(
Bucket = "string",
Key = "string"
),
Status = "IN_PROGRESS"|"SUCCESS"|"FAILED",
FailedReason = "string",
ModelVersion = 123,
ModelVersionArn = "string"
)
)
)