Module Values.AttemptDetailSource

An object that represents a job attempt.

Sourcetype nonrec t = {
  1. container : AttemptContainerDetail.t option;
    (*

    The details for the container in this job attempt.

    *)
  2. 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).

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

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

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

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

    *)
  5. taskProperties : ListAttemptEcsTaskDetails.t option;
    (*

    The properties for a task definition that describes the container and volume definitions of an Amazon ECS task.

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