Module Values.AttemptContainerDetailSource

An object that represents the details of a container that's part of a job attempt.

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

    The Amazon Resource Name (ARN) of the Amazon ECS container instance that hosts the job attempt.

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

    The Amazon Resource Name (ARN) of the Amazon ECS task that's associated with the job attempt. Each container attempt receives a task ARN when they reach the STARTING status.

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

    The exit code 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.

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

    The name of the CloudWatch Logs log stream that's associated with the container. The log group for Batch jobs is /aws/batch/job. Each container attempt receives a log stream name when they reach the RUNNING status.

    *)
  6. networkInterfaces : NetworkInterfaceList.t option;
    (*

    The network interfaces that are associated with the job attempt.

    *)
}
Sourceval make : ?containerInstanceArn:??? -> ?taskArn:??? -> ?exitCode:??? -> ?reason:??? -> ?logStreamName:??? -> ?networkInterfaces:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `List of [> `Structure of (string * [> `String of String_.t ]) list ] list | `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