Module Values.AssetModelCompositeModelSummarySource

Contains a summary of the composite model.

Sourcetype nonrec t = {
  1. id : ID.t option;
    (*

    The ID of the composite model that this summary describes..

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

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

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

    The name of the composite model that this summary describes..

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

    The composite model type. Valid values are AWS/ALARM, CUSTOM, or AWS/L4E_ANOMALY.

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

    The description of the composite model that this summary describes..

    *)
  6. path : AssetModelCompositeModelPath.t option;
    (*

    The path that includes all the pieces that make up the composite model.

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