Module Values_0.PutAssetPropertyValueEntrySource

An asset property value entry containing the following information.

Sourcetype nonrec t = {
  1. entryId : AssetPropertyEntryId.t option;
    (*

    Optional. A unique identifier for this entry that you can define to better track which message caused an error in case of failure. Accepts substitution templates. Defaults to a new UUID.

    *)
  2. assetId : AssetId.t option;
    (*

    The ID of the IoT SiteWise asset. You must specify either a propertyAlias or both an aliasId and a propertyId. Accepts substitution templates.

    *)
  3. propertyId : AssetPropertyId.t option;
    (*

    The ID of the asset's property. You must specify either a propertyAlias or both an aliasId and a propertyId. Accepts substitution templates.

    *)
  4. propertyAlias : AssetPropertyAlias.t option;
    (*

    The name of the property alias associated with your asset property. You must specify either a propertyAlias or both an aliasId and a propertyId. Accepts substitution templates.

    *)
  5. propertyValues : AssetPropertyValueList.t;
    (*

    A list of property values to insert that each contain timestamp, quality, and value (TQV) information.

    *)
}
Sourceval context_ : string
Sourceval make : ?entryId:??? -> ?assetId:??? -> ?propertyId:??? -> ?propertyAlias:??? -> propertyValues:AssetPropertyValueList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of AssetPropertyQuality.t | `Structure of (string * [> `String of AssetPropertyStringValue.t ]) list ]) list ] list | `String of AssetPropertyEntryId.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