Module Values.EcsTaskDetailsSource

Contains information about the task in an ECS cluster.

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

    The Amazon Resource Name (ARN) of the task.

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

    The ARN of the task definition that creates the task.

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

    The version counter for the task.

    *)
  4. taskCreatedAt : Timestamp.t option;
    (*

    The Unix timestamp for the time when the task was created.

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

    The Unix timestamp for the time when the task started.

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

    Contains the tag specified when a task is started.

    *)
  7. tags : Tags.t option;
    (*

    The tags of the ECS Task.

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

    The list of data volume definitions for the task.

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

    The containers that's associated with the task.

    *)
  10. group : String_.t option;
    (*

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

    *)
  11. launchType : String_.t option;
    (*

    A capacity on which the task is running. For example, Fargate and EC2.

    *)
}
Sourceval make : ?arn:??? -> ?definitionArn:??? -> ?version:??? -> ?taskCreatedAt:??? -> ?startedAt:??? -> ?startedBy:??? -> ?tags:??? -> ?volumes:??? -> ?containers:??? -> ?group:??? -> ?launchType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of String_.t ]) list ] list | `String of String_.t | `Structure of (string * [> `Boolean of Boolean.t | `String of String_.t ]) list ]) list ] list | `String of String_.t | `Timestamp of Timestamp.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