Module Values.GetDetectorModelAnalysisResultsRequestSource

Retrieves one or more analysis results of the detector model. After AWS IoT Events starts analyzing your detector model, you have up to 24 hours to retrieve the analysis results.

Sourcetype nonrec t = {
  1. analysisId : AnalysisId.t;
    (*

    The ID of the analysis result that you want to retrieve.

    *)
  2. nextToken : NextToken.t option;
    (*

    The token that you can use to return the next set of results.

    *)
  3. maxResults : MaxAnalysisResults.t option;
    (*

    The maximum number of results to be returned per request.

    *)
}
Sourceval context_ : string
Sourceval make : ?nextToken:??? -> ?maxResults:??? -> analysisId:AnalysisId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of MaxAnalysisResults.t | `String of AnalysisId.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