I am creating Glue Workflow using CDK as shown below. It is composed of Glue jobs and crawlers. Is it possible to mark the status of the Workflow as Error
when any of the components fail? Currently it is always marked as Completed
.
const etlWorkflow = new glue.CfnWorkflow(this, "WorkflowId", {
name: "WorkflowName",
});