Module Values.BatchGetAssetPropertyAggregatesResponseSource

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. errorEntries : BatchGetAssetPropertyAggregatesErrorEntries.t option;
    (*

    A list of the errors (if any) associated with the batch request. Each error entry contains the entryId of the entry that failed.

    *)
  2. successEntries : BatchGetAssetPropertyAggregatesSuccessEntries.t option;
    (*

    A list of entries that were processed successfully by this batch request. Each success entry contains the entryId of the entry that succeeded and the latest query result.

    *)
  3. skippedEntries : BatchGetAssetPropertyAggregatesSkippedEntries.t option;
    (*

    A list of entries that were not processed by this batch request. because these entries had been completely processed by previous paginated requests. Each skipped entry contains the entryId of the entry that skipped.

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

    The token for the next set of results, or null if there are no additional results.

    *)
}
Sourcetype nonrec error = [
  1. | `InternalFailureException of InternalFailureException.t
  2. | `InvalidRequestException of InvalidRequestException.t
  3. | `ServiceUnavailableException of ServiceUnavailableException.t
  4. | `ThrottlingException of ThrottlingException.t
  5. | `Unknown_operation_error of string * string option
]
Sourceval make : ?errorEntries:??? -> ?successEntries:??? -> ?skippedEntries:??? -> ?nextToken:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `InternalFailureException of InternalFailureException.t | `InvalidRequestException of InvalidRequestException.t | `ServiceUnavailableException of ServiceUnavailableException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `InternalFailureException of InternalFailureException.t | `InvalidRequestException of InvalidRequestException.t | `ServiceUnavailableException of ServiceUnavailableException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `Structure of (string * [> `Double of AggregatedDoubleValue.t ]) list | `Timestamp of Timestamp.t ]) list ] list | `String of ErrorMessage.t | `Structure of (string * [> `Enum of string | `Timestamp of Timestamp.t ]) list ]) 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