Module Values.SourceConfigurationSource

A specification for an environment configuration.

Sourcetype nonrec t = {
  1. applicationName : ApplicationName.t option;
    (*

    The name of the application associated with the configuration.

    *)
  2. templateName : ConfigurationTemplateName.t option;
    (*

    The name of the configuration template.

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