Module Values.EksAttemptDetailSource

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

Sourcetype nonrec t = {
  1. containers : EksAttemptContainerDetails.t option;
    (*

    The details for the final status of the containers for this job attempt.

    *)
  2. initContainers : EksAttemptContainerDetails.t option;
    (*

    The details for the init containers.

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

    The Amazon Resource Name (ARN) of the Amazon EKS cluster.

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

    The name of the pod for this job attempt.

    *)
  5. podNamespace : String_.t option;
    (*

    The namespace of the Amazon EKS cluster that the pod exists in.

    *)
  6. nodeName : String_.t option;
    (*

    The name of the node for this job attempt.

    *)
  7. startedAt : Long.t option;
    (*

    The Unix timestamp (in milliseconds) for when the attempt was started (when the attempt transitioned from the STARTING state to the RUNNING state).

    *)
  8. stoppedAt : Long.t option;
    (*

    The Unix timestamp (in milliseconds) for when the attempt was stopped. This happens when the attempt transitioned from the RUNNING state to a terminal state, such as SUCCEEDED or FAILED.

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

    A short, human-readable string to provide additional details for the current status of the job attempt.

    *)
}
Sourceval make : ?containers:??? -> ?initContainers:??? -> ?eksClusterArn:??? -> ?podName:??? -> ?podNamespace:??? -> ?nodeName:??? -> ?startedAt:??? -> ?stoppedAt:??? -> ?statusReason:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Integer of Integer.t | `String of String_.t ]) list ] list | `Long of Long.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