Module Values.GetTaskInstanceRequestSource

Retrieves detailed information about a specific task instance within a workflow run. Task instances represent individual tasks that are executed as part of a workflow in the Amazon Managed Workflows for Apache Airflow Serverless environment. Each task instance runs in an isolated ECS container with dedicated resources and security boundaries. The service tracks task execution state, retry attempts, and provides detailed timing and error information for troubleshooting and monitoring purposes.

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

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

    *)
  2. taskInstanceId : IdString.t;
    (*

    The unique identifier of the task instance to retrieve.

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

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

    *)
}
Sourceval context_ : string
Sourceval make : workflowArn:WorkflowArn.t -> taskInstanceId:IdString.t -> runId:IdString.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `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