Module Values.EnvironmentLinkSource

A link to another environment, defined in the environment's manifest. Links provide connection information in system properties that can be used to connect to another environment in the same group. See Environment Manifest (env.yaml) for details.

Sourcetype nonrec t = {
  1. linkName : String_.t option;
    (*

    The name of the link.

    *)
  2. environmentName : String_.t option;
    (*

    The name of the linked environment (the dependency).

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