Module Values.ContainerGroupPortMappingSource

Describes the port mappings for a single container in a container group. Each mapping shows how a container port maps to a connection port on the fleet instance. Returned by: DescribeContainerGroupPortMappings

Sourcetype nonrec t = {
  1. containerName : NonZeroAnd128MaxAsciiString.t option;
    (*

    The name of the container, as defined in the container group definition.

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

    The runtime ID for the container that's running in a compute. This value is unique within the compute.

    *)
  3. containerPortMappings : ContainerPortMappingList.t option;
    (*

    A list of ContainerPortMapping objects that describe the port mappings for this container.

    *)
}
Sourceval make : ?containerName:??? -> ?containerRuntimeId:??? -> ?containerPortMappings:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `Integer of PortNumber.t ]) list ] list | `String of NonZeroAnd128MaxAsciiString.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