Module Values.ComputationModelSummarySource

Contains a summary of a computation model.

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

    The ID of the computation model.

    *)
  2. arn : ARN.t option;
    (*

    The ARN of the computation model, which has the following format. arn:${Partition}:iotsitewise:${Region}:${Account}:computation-model/${ComputationModelId}

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

    The name of the computation model.

    *)
  4. description : RestrictedDescription.t option;
    (*

    The description of the computation model.

    *)
  5. type_ : ComputationModelType.t option;
    (*

    The type of the computation model.

    *)
  6. creationDate : Timestamp.t option;
    (*

    The model creation date, in Unix epoch time.

    *)
  7. lastUpdateDate : Timestamp.t option;
    (*

    The time the model was last updated, in Unix epoch time.

    *)
  8. status : ComputationModelStatus.t option;
    (*

    The current status of the computation model.

    *)
  9. version : Version.t option;
    (*

    The version of the computation model.

    *)
}
Sourceval make : ?id:??? -> ?arn:??? -> ?name:??? -> ?description:??? -> ?type_:??? -> ?creationDate:??? -> ?lastUpdateDate:??? -> ?status:??? -> ?version:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ID.t | `Structure of (string * [> `Enum of string | `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `String of DetailedErrorMessage.t ]) list ] list | `String of ErrorMessage.t ]) list ]) list | `Timestamp of Timestamp.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