AWS::Glue::WorkflowThe `AWS::Glue::Workflow` is an AWS Glue resource type that manages AWS Glue workflows. A workflow is a container for a set of related jobs, crawlers, and triggers in AWS Glue . Using a workflow, you can design a complex multi-job extract, transform, and load (ETL) activity that AWS Glue can execute and track as single entity.
import { CfnWorkflow } from 'aws-cdk-lib/aws-glue';Or use the module namespace:
import * as glue from 'aws-cdk-lib/aws-glue';
// glue.CfnWorkflowConfiguration passed to the constructor as CfnWorkflowProps.
defaultRunPropertiesOptionalanyA collection of properties to be used as part of each execution of the workflow.
descriptionOptionalstringA description of the workflow.
maxConcurrentRunsOptionalnumberYou can use this parameter to prevent unwanted multiple updates to data, to control costs, or in some cases, to prevent exceeding the maximum number of concurrent runs of any of the component jobs. If you leave this parameter blank, there is no limit to the number of concurrent workflow runs.
nameOptionalstringThe name of the workflow representing the flow.
tagsOptionalanyThe tags to use with this workflow.
This L1 construct maps directly to the following CloudFormation resource type.
Our bi-weekly newsletter teaches hands-on AWS fundamentals. No certification fluff - just practical knowledge.
Subscribe to Newsletteraws-glueAWS::Glue::Workflow