Module Values.AwsEcsTaskDefinitionContainerDefinitionsExtraHostsDetailsSource

A hostname and IP address mapping to append to the /etc/hosts file on the container.

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

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

    *)
  2. ipAddress : NonEmptyString.t option;
    (*

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

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