Module Values.GetSessionsStatisticsAggregationRequestSource

Shared pagination fields for List operation inputs (nextToken + maxResults).

Sourcetype nonrec t = {
  1. farmId : FarmId.t;
    (*

    The identifier of the farm to include in the statistics. This should be the same as the farm ID used in the call to the StartSessionsStatisticsAggregation operation.

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

    The token for the next set of results, or null to start from the beginning.

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

    The maximum number of results to return. Use this parameter with NextToken to get results as a set of sequential pages.

    *)
  4. aggregationId : AggregationId.t;
    (*

    The identifier returned by the StartSessionsStatisticsAggregation operation that identifies the aggregated statistics.

    *)
}
Sourceval context_ : string
Sourceval make : ?nextToken:??? -> ?maxResults:??? -> farmId:FarmId.t -> aggregationId:AggregationId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of MaxResults.t | `String of FarmId.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