Module Values.GetInsightSummariesRequestSource

Retrieves the summaries of all insights in the specified group matching the provided filter values.

Sourcetype nonrec t = {
  1. states : InsightStateList.t option;
    (*

    The list of insight states.

    *)
  2. groupARN : GroupARN.t option;
    (*

    The Amazon Resource Name (ARN) of the group. Required if the GroupName isn't provided.

    *)
  3. groupName : GroupName.t option;
    (*

    The name of the group. Required if the GroupARN isn't provided.

    *)
  4. startTime : Timestamp.t;
    (*

    The beginning of the time frame in which the insights started. The start time can't be more than 30 days old.

    *)
  5. endTime : Timestamp.t;
    (*

    The end of the time frame in which the insights ended. The end time can't be more than 30 days old.

    *)
  6. maxResults : GetInsightSummariesMaxResults.t option;
    (*

    The maximum number of results to display.

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

    Pagination token.

    *)
}
Sourceval context_ : string
Sourceval make : ?states:??? -> ?groupARN:??? -> ?groupName:??? -> ?maxResults:??? -> ?nextToken:??? -> startTime:Timestamp.t -> endTime:Timestamp.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of GetInsightSummariesMaxResults.t | `List of [> `Enum of string ] list | `String of GroupARN.t | `Timestamp of Timestamp.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