aws-cdk-lib.aws_glue.CfnWorkflowProps

interface CfnWorkflowProps

LanguageType name
.NETAmazon.CDK.AWS.Glue.CfnWorkflowProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsglue#CfnWorkflowProps
Javasoftware.amazon.awscdk.services.glue.CfnWorkflowProps
Pythonaws_cdk.aws_glue.CfnWorkflowProps
TypeScript aws-cdk-lib » aws_glue » CfnWorkflowProps

Properties for defining a CfnWorkflow.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_glue as glue } from 'aws-cdk-lib';

declare const defaultRunProperties: any;
declare const tags: any;
const cfnWorkflowProps: glue.CfnWorkflowProps = {
  defaultRunProperties: defaultRunProperties,
  description: 'description',
  maxConcurrentRuns: 123,
  name: 'name',
  tags: tags,
};

Properties

NameTypeDescription
defaultRunProperties?anyA collection of properties to be used as part of each execution of the workflow.
description?stringA description of the workflow.
maxConcurrentRuns?numberYou 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.
name?stringThe name of the workflow representing the flow.
tags?anyThe tags to use with this workflow.

defaultRunProperties?

Type: any (optional)

A collection of properties to be used as part of each execution of the workflow.


description?

Type: string (optional)

A description of the workflow.


maxConcurrentRuns?

Type: number (optional)

You 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.


name?

Type: string (optional)

The name of the workflow representing the flow.


tags?

Type: any (optional)

The tags to use with this workflow.