Module Values.InstanceHealthCheckResultSource

An object representing the result of a container instance health status check.

Sourcetype nonrec t = {
  1. type_ : InstanceHealthCheckType.t option;
    (*

    The type of container instance health status that was verified.

    *)
  2. status : InstanceHealthCheckState.t option;
    (*

    The container instance health status.

    *)
  3. statusReason : String_.t option;
    (*

    The reason for the container instance health status.

    *)
  4. lastUpdated : Timestamp.t option;
    (*

    The Unix timestamp for when the container instance health status was last updated.

    *)
  5. lastStatusChange : Timestamp.t option;
    (*

    The Unix timestamp for when the container instance health status last changed.

    *)
}
Sourceval make : ?type_:??? -> ?status:??? -> ?statusReason:??? -> ?lastUpdated:??? -> ?lastStatusChange:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.t | `Timestamp of Timestamp.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