Module Values.AwsEcsTaskDetailsSource

Provides details about a task in a cluster.

Sourcetype nonrec t = {
  1. clusterArn : NonEmptyString.t option;
    (*

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

    *)
  2. taskDefinitionArn : NonEmptyString.t option;
    (*

    The ARN of the task definition that creates the task.

    *)
  3. version : NonEmptyString.t option;
    (*

    The version counter for the task.

    *)
  4. createdAt : NonEmptyString.t option;
    (*

    The Unix timestamp for the time when the task was created. More specifically, it's for the time when the task entered the PENDING state.

    *)
  5. startedAt : NonEmptyString.t option;
    (*

    The Unix timestamp for the time when the task started. More specifically, it's for the time when the task transitioned from the PENDING state to the RUNNING state.

    *)
  6. startedBy : NonEmptyString.t option;
    (*

    The tag specified when a task is started. If an Amazon ECS service started the task, the startedBy parameter contains the deployment ID of that service.

    *)
  7. group : NonEmptyString.t option;
    (*

    The name of the task group that's associated with the task.

    *)
  8. volumes : AwsEcsTaskVolumeDetailsList.t option;
    (*

    Details about the data volume that is used in a task definition.

    *)
  9. containers : AwsEcsContainerDetailsList.t option;
    (*

    The containers that are associated with the task.

    *)
}
Sourceval make : ?clusterArn:??? -> ?taskDefinitionArn:??? -> ?version:??? -> ?createdAt:??? -> ?startedAt:??? -> ?startedBy:??? -> ?group:??? -> ?volumes:??? -> ?containers:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Boolean of Boolean.t | `List of [> `Structure of (string * [> `String of NonEmptyString.t ]) list ] list | `String of NonEmptyString.t | `Structure of (string * [> `String of NonEmptyString.t ]) list ]) list ] list | `String of NonEmptyString.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