CfnWorkflowProps
- class aws_cdk.aws_glue.CfnWorkflowProps(*, default_run_properties=None, description=None, max_concurrent_runs=None, name=None, tags=None)
Bases:
object
Properties for defining a
CfnWorkflow
.- Parameters:
default_run_properties (
Any
) – A collection of properties to be used as part of each execution of the workflow.description (
Optional
[str
]) – A description of the workflow.max_concurrent_runs (
Union
[int
,float
,None
]) – 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 (
Optional
[str
]) – The name of the workflow representing the flow.tags (
Any
) – The tags to use with this workflow.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html
- 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 # default_run_properties: Any # tags: Any cfn_workflow_props = glue.CfnWorkflowProps( default_run_properties=default_run_properties, description="description", max_concurrent_runs=123, name="name", tags=tags )
Attributes
- default_run_properties
A collection of properties to be used as part of each execution of the workflow.
- description
A description of the workflow.
- max_concurrent_runs
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
The name of the workflow representing the flow.
- tags
The tags to use with this workflow.