Module Values.SubmitTaskStateChangeRequestSource

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

    The short name or full Amazon Resource Name (ARN) of the cluster that hosts the task.

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

    The task ID or full ARN of the task in the state change request.

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

    The status of the state change request.

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

    The reason for the state change request.

    *)
  5. containers : ContainerStateChanges.t option;
    (*

    Any containers that's associated with the state change request.

    *)
  6. attachments : AttachmentStateChanges.t option;
    (*

    Any attachments associated with the state change request.

    *)
  7. managedAgents : ManagedAgentStateChanges.t option;
    (*

    The details for the managed agent that's associated with the task.

    *)
  8. pullStartedAt : Timestamp.t option;
    (*

    The Unix timestamp for the time when the container image pull started.

    *)
  9. pullStoppedAt : Timestamp.t option;
    (*

    The Unix timestamp for the time when the container image pull completed.

    *)
  10. executionStoppedAt : Timestamp.t option;
    (*

    The Unix timestamp for the time when the task execution stopped.

    *)
}
Sourceval make : ?cluster:??? -> ?task:??? -> ?status:??? -> ?reason:??? -> ?containers:??? -> ?attachments:??? -> ?managedAgents:??? -> ?pullStartedAt:??? -> ?pullStoppedAt:??? -> ?executionStoppedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `Integer of BoxedInteger.t | `List of [> `Structure of (string * [> `Enum of string | `Integer of BoxedInteger.t | `String of String_.t ]) list ] list | `String of String_.t ]) 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