Module Values.EksAttemptContainerDetailSource

An object that represents the details for an attempt for a job attempt that an Amazon EKS container runs.

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

    The name of a container.

    *)
  2. containerID : String_.t option;
    (*

    The ID for the container.

    *)
  3. exitCode : Integer.t option;
    (*

    The exit code returned for the job attempt. A non-zero exit code is considered failed.

    *)
  4. reason : String_.t option;
    (*

    A short (255 max characters) human-readable string to provide additional details for a running or stopped container.

    *)
}
Sourceval make : ?name:??? -> ?containerID:??? -> ?exitCode:??? -> ?reason:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `String of String_.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