Module Values.AssetCompositeModelSource

Contains information about a composite model in an asset. This object contains the asset's properties that you define in the composite model.

Sourcetype nonrec t = {
  1. name : Name.t option;
    (*

    The name of the composite model.

    *)
  2. description : Description.t option;
    (*

    The description of the composite model.

    *)
  3. type_ : Name.t option;
    (*

    The type of the composite model. For alarm composite models, this type is AWS/ALARM.

    *)
  4. properties : AssetProperties.t option;
    (*

    The asset properties that this composite model defines.

    *)
  5. id : ID.t option;
    (*

    The ID of the asset composite model.

    *)
  6. externalId : ExternalId.t option;
    (*

    The external ID of the asset composite model. For more information, see Using external IDs in the IoT SiteWise User Guide.

    *)
}
Sourceval make : ?name:??? -> ?description:??? -> ?type_:??? -> ?properties:??? -> ?id:??? -> ?externalId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of ID.t ]) list ] list | `String of ID.t | `Structure of (string * [> `Enum of string | `String of PropertyNotificationTopic.t ]) list ]) list ] list | `String of Name.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