WorkflowAttributes
- class aws_cdk.aws_glue.WorkflowAttributes(*, workflow_name, workflow_arn=None)
Bases:
objectProperties for importing a Workflow using its attributes.
- Parameters:
workflow_name (
str) – The name of the workflow to import.workflow_arn (
Optional[str]) – The ARN of the workflow to import. Default: - derived from the workflow name
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_glue as glue workflow_attributes = glue.WorkflowAttributes( workflow_name="workflowName", # the properties below are optional workflow_arn="workflowArn" )
Attributes
- workflow_arn
The ARN of the workflow to import.
- Default:
derived from the workflow name
- workflow_name
The name of the workflow to import.