Module Values.ContainerInstanceHealthStatusSource

An object representing the health status of the container instance.

Sourcetype nonrec t = {
  1. overallStatus : InstanceHealthCheckState.t option;
    (*

    The overall health status of the container instance. This is an aggregate status of all container instance health checks.

    *)
  2. details : InstanceHealthCheckResultList.t option;
    (*

    An array of objects representing the details of the container instance health status.

    *)
}
Sourceval make : ?overallStatus:??? -> ?details:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `String of String_.t | `Timestamp of Timestamp.t ]) list ] 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