Module Values.DefinitionSource

Sourcetype nonrec t = {
  1. modelHandle : EntityName.t option;
    (*

    The unique model handle.

    *)
  2. s3Url : S3Uri.t option;
    (*

    The absolute S3 location of the model.

    *)
  3. checksum : Checksum.t option;
    (*

    The checksum information of the model.

    *)
  4. state : ModelState.t option;
    (*

    The desired state of the model.

    *)
}
Sourceval make : ?modelHandle:??? -> ?s3Url:??? -> ?checksum:??? -> ?state:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of EntityName.t | `Structure of (string * [> `Enum of string | `String of ChecksumString.t ]) list ]) 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