interface WorkflowAttributes
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.Glue.Alpha.WorkflowAttributes | 
  Go | github.com/aws/aws-cdk-go/awscdkgluealpha/v2#WorkflowAttributes | 
  Java | software.amazon.awscdk.services.glue.alpha.WorkflowAttributes | 
  Python | aws_cdk.aws_glue_alpha.WorkflowAttributes | 
  TypeScript (source) | @aws-cdk/aws-glue-alpha » WorkflowAttributes | 
Properties for importing a Workflow using its attributes.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as glue_alpha from '@aws-cdk/aws-glue-alpha';
const workflowAttributes: glue_alpha.WorkflowAttributes = {
  workflowName: 'workflowName',
  // the properties below are optional
  workflowArn: 'workflowArn',
};
Properties
| Name | Type | Description | 
|---|---|---|
| workflow | string | The name of the workflow to import. | 
| workflow | string | The ARN of the workflow to import. | 
workflowName
Type:
string
The name of the workflow to import.
workflowArn?
Type:
string
(optional, default: derived from the workflow name)
The ARN of the workflow to import.

 .NET
 Go
 Java
 Python
 TypeScript (