Module Values.GetInsightEventsRequestSource

X-Ray reevaluates insights periodically until they're resolved, and records each intermediate state as an event. You can review an insight's events in the Impact Timeline on the Inspect page in the X-Ray console.

Sourcetype nonrec t = {
  1. insightId : InsightId.t;
    (*

    The insight's unique identifier. Use the GetInsightSummaries action to retrieve an InsightId.

    *)
  2. maxResults : GetInsightEventsMaxResults.t option;
    (*

    Used to retrieve at most the specified value of events.

    *)
  3. nextToken : Token.t option;
    (*

    Specify the pagination token returned by a previous request to retrieve the next page of events.

    *)
}
Sourceval context_ : string
Sourceval make : ?maxResults:??? -> ?nextToken:??? -> insightId:InsightId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of GetInsightEventsMaxResults.t | `String of InsightId.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t