Values.GetTaskInstanceRequestSourceRetrieves 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.
type nonrec t = {workflowArn : WorkflowArn.t;The Amazon Resource Name (ARN) of the workflow that contains the task instance.
*)taskInstanceId : IdString.t;The unique identifier of the task instance to retrieve.
*)runId : IdString.t;The unique identifier of the workflow run that contains the task instance.
*)}val make :
workflowArn:WorkflowArn.t ->
taskInstanceId:IdString.t ->
runId:IdString.t ->
unit ->
t