Module Values.DisassociateTimeSeriesFromAssetPropertyRequestSource

Disassociates a time series (data stream) from an asset property.

Sourcetype nonrec t = {
  1. alias : PropertyAlias.t;
    (*

    The alias that identifies the time series.

    *)
  2. assetId : CustomID.t;
    (*

    The ID of the asset in which the asset property was created. This can be either the actual ID in UUID format, or else externalId: followed by the external ID, if it has one. For more information, see Referencing objects with external IDs in the IoT SiteWise User Guide.

    *)
  3. propertyId : CustomID.t;
    (*

    The ID of the asset property. This can be either the actual ID in UUID format, or else externalId: followed by the external ID, if it has one. For more information, see Referencing objects with external IDs in the IoT SiteWise User Guide.

    *)
  4. clientToken : ClientToken.t option;
    (*

    A unique case-sensitive identifier that you can provide to ensure the idempotency of the request. Don't reuse this client token if a new idempotent request is required.

    *)
}
Sourceval context_ : string
Sourceval make : ?clientToken:??? -> alias:PropertyAlias.t -> assetId:CustomID.t -> propertyId:CustomID.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of PropertyAlias.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