Module Values.AttemptEcsTaskDetailsSource

An object that represents the details of a task.

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

    The Amazon Resource Name (ARN) of the container instance that hosts the task.

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

    The ARN of the Amazon ECS task.

    *)
  3. containers : ListAttemptTaskContainerDetails.t option;
    (*

    A list of containers that are included in the taskProperties list.

    *)
}
Sourceval make : ?containerInstanceArn:??? -> ?taskArn:??? -> ?containers:??? -> unit -> t
Sourceval to_value : t -> [> `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 ]
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