Values.AssociateTimeSeriesToAssetPropertyRequestSourceAssociates a time series (data stream) with an asset property.
type nonrec t = {alias : PropertyAlias.t;The alias that identifies the time series.
*)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.
*)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.
*)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.
*)}val make :
?clientToken:??? ->
alias:PropertyAlias.t ->
assetId:CustomID.t ->
propertyId:CustomID.t ->
unit ->
t