Module Values.ContainerServiceEndpointSource

Describes the public endpoint configuration of a deployment of an Amazon Lightsail container service.

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

    The name of the container entry of the deployment that the endpoint configuration applies to.

    *)
  2. containerPort : Integer.t option;
    (*

    The port of the specified container to which traffic is forwarded to.

    *)
  3. healthCheck : ContainerServiceHealthCheckConfig.t option;
    (*

    An object that describes the health check configuration of the container.

    *)
}
Sourceval make : ?containerName:??? -> ?containerPort:??? -> ?healthCheck:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `String of String_.t | `Structure of (string * [> `Integer of Integer.t | `String of String_.t ]) list ]) 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