Module Values.TaskInstanceSummarySource

Summary information about a task instance within a workflow run, including its status and execution details.

Sourcetype nonrec t = {
  1. workflowArn : WorkflowArn.t option;
    (*

    The Amazon Resource Name (ARN) of the workflow that contains this task instance.

    *)
  2. workflowVersion : VersionId.t option;
    (*

    The version of the workflow that contains this task instance.

    *)
  3. runId : IdString.t option;
    (*

    The unique identifier of the workflow run that contains this task instance.

    *)
  4. taskInstanceId : IdString.t option;
    (*

    The unique identifier of this task instance.

    *)
  5. status : TaskInstanceStatus.t option;
    (*

    The current status of the task instance.

    *)
  6. durationInSeconds : Integer.t option;
    (*

    The duration of the task instance execution in seconds. This value is null if the task is not complete.

    *)
  7. operatorName : GenericString.t option;
    (*

    The name of the Apache Airflow operator used for this task instance.

    *)
}
Sourceval make : ?workflowArn:??? -> ?workflowVersion:??? -> ?runId:??? -> ?taskInstanceId:??? -> ?status:??? -> ?durationInSeconds:??? -> ?operatorName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Integer.t | `String of WorkflowArn.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