List Inference Events
| lookoutequipment_list_inference_events | R Documentation | 
Lists all inference events that have been found for the specified inference scheduler¶
Description¶
Lists all inference events that have been found for the specified inference scheduler.
Usage¶
lookoutequipment_list_inference_events(NextToken, MaxResults,
  InferenceSchedulerName, IntervalStartTime, IntervalEndTime)
Arguments¶
| NextToken | An opaque pagination token indicating where to continue the listing of inference events. | 
| MaxResults | Specifies the maximum number of inference events to list. | 
| InferenceSchedulerName | [required] The name of the inference scheduler for the inference events listed. | 
| IntervalStartTime | [required] Lookout for Equipment will return all the inference events with an end time equal to or greater than the start time given. | 
| IntervalEndTime | [required] Returns all the inference events with an end start time equal to or greater than less than the end time given. | 
Value¶
A list with the following syntax:
list(
  NextToken = "string",
  InferenceEventSummaries = list(
    list(
      InferenceSchedulerArn = "string",
      InferenceSchedulerName = "string",
      EventStartTime = as.POSIXct(
        "2015-01-01"
      ),
      EventEndTime = as.POSIXct(
        "2015-01-01"
      ),
      Diagnostics = "string",
      EventDurationInSeconds = 123
    )
  )
)
Request syntax¶
svc$list_inference_events(
  NextToken = "string",
  MaxResults = 123,
  InferenceSchedulerName = "string",
  IntervalStartTime = as.POSIXct(
    "2015-01-01"
  ),
  IntervalEndTime = as.POSIXct(
    "2015-01-01"
  )
)