Module Values.EnvironmentStateSource

The detailed data about the current state of the environment.

Sourcetype nonrec t = {
  1. spec : SpecContents.t option;
    (*

    The environment spec that was used to create the environment.

    *)
  2. templateMajorVersion : TemplateVersionPart.t option;
    (*

    The major version of the environment template that was used to create the environment.

    *)
  3. templateMinorVersion : TemplateVersionPart.t option;
    (*

    The minor version of the environment template that was used to create the environment.

    *)
  4. templateName : ResourceName.t option;
    (*

    The name of the environment template that was used to create the environment.

    *)
}
Sourceval make : ?spec:??? -> ?templateMajorVersion:??? -> ?templateMinorVersion:??? -> ?templateName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of SpecContents.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