Module Values.ContainerPortRangeSource

A set of one or more port numbers that can be opened on the container, and the supported network protocol. Part of: ContainerPortConfiguration

Sourcetype nonrec t = {
  1. fromPort : PortNumber.t;
    (*

    A starting value for the range of allowed port numbers.

    *)
  2. toPort : PortNumber.t;
    (*

    An ending value for the range of allowed port numbers. Port numbers are end-inclusive. This value must be equal to or greater than FromPort.

    *)
  3. protocol : IpProtocol.t;
    (*

    The network protocol that these ports support.

    *)
}
Sourceval context_ : string
Sourceval make : fromPort:PortNumber.t -> toPort:PortNumber.t -> protocol:IpProtocol.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of PortNumber.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