Values.DescribeAssetModelRequestSourceRetrieves information about an asset model. This includes details about the asset model's properties, hierarchies, composite models, and any interface relationships if the asset model implements interfaces.
type nonrec t = {assetModelId : CustomID.t;The ID of the asset model. 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.
*)excludeProperties : ExcludeProperties.t option;Whether or not to exclude asset model properties from the response.
*)assetModelVersion : AssetModelVersionFilter.t option;The version alias that specifies the latest or active version of the asset model. The details are returned in the response. The default value is LATEST. See Asset model versions in the IoT SiteWise User Guide.
*)}val make :
?excludeProperties:??? ->
?assetModelVersion:??? ->
assetModelId:CustomID.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string * [> `Boolean of ExcludeProperties.t | `String of CustomID.t ])
list ]