Module Values.HostEntrySource

Hostnames and IP address entries that are added to the /etc/hosts file of a container via the extraHosts parameter of its ContainerDefinition.

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

    The hostname to use in the /etc/hosts entry.

    *)
  2. ipAddress : String_.t;
    (*

    The IP address to use in the /etc/hosts entry.

    *)
}
Sourceval context_ : string
Sourceval make : hostname:String_.t -> ipAddress:String_.t -> 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