Module Values.GetInsightsRequestSource

Lists and describes insights for the specified insight ARNs.

Sourcetype nonrec t = {
  1. insightArns : ArnList.t option;
    (*

    The ARNs of the insights to describe. If you don't provide any insight ARNs, then GetInsights returns all of your custom insights. It does not return any managed insights.

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

    The token that is required for pagination. On your first call to the GetInsights operation, set the value of this parameter to NULL. For subsequent calls to the operation, to continue listing data, set the value of this parameter to the value returned from the previous response.

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

    The maximum number of items to return in the response.

    *)
}
Sourceval make : ?insightArns:??? -> ?nextToken:??? -> ?maxResults:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of MaxResults.t | `List of [> `String of NonEmptyString.t ] list | `String of NextToken.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