Module Values.BatchGetAssetPropertyAggregatesRequestSource

Gets aggregated values (for example, average, minimum, and maximum) for one or more asset properties. For more information, see Querying aggregates in the IoT SiteWise User Guide.

Sourcetype nonrec t = {
  1. entries : BatchGetAssetPropertyAggregatesEntries.t;
    (*

    The list of asset property aggregate entries for the batch get request. You can specify up to 16 entries per request.

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

    The token to be used for the next set of paginated results.

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

    The maximum number of results to return for each paginated request. A result set is returned in the two cases, whichever occurs first. The size of the result set is equal to 1 MB. The number of data points in the result set is equal to the value of maxResults. The maximum value of maxResults is 4000.

    *)
}
Sourceval context_ : string
Sourceval make : ?nextToken:??? -> ?maxResults:??? -> entries:BatchGetAssetPropertyAggregatesEntries.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of BatchGetAssetPropertyAggregatesMaxResults.t | `List of [> `Structure of (string * [> `Enum of string | `List of [> `Enum of string ] list | `String of EntryId.t | `Timestamp of Timestamp.t ]) list ] 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