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¶
| NextToken | An opaque pagination token indicating where to continue the listing of inference executions. | 
| MaxResults | Specifies the maximum number of inference executions to list. | 
| InferenceSchedulerName | [required] The name of the inference scheduler for the inference execution listed. | 
| DataStartTimeAfter | The time reference in the inferenced dataset after which Amazon Lookout for Equipment started the inference execution. | 
| DataEndTimeBefore | The time reference in the inferenced dataset before which Amazon Lookout for Equipment stopped the inference execution. | 
| Status | The 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"
    )
  )
)
Request syntax¶
svc$list_inference_executions(
  NextToken = "string",
  MaxResults = 123,
  InferenceSchedulerName = "string",
  DataStartTimeAfter = as.POSIXct(
    "2015-01-01"
  ),
  DataEndTimeBefore = as.POSIXct(
    "2015-01-01"
  ),
  Status = "IN_PROGRESS"|"SUCCESS"|"FAILED"
)