WorkflowProps
- class aws_cdk.aws_glue_alpha.WorkflowProps(*, default_run_properties=None, description=None, max_concurrent_runs=None, workflow_name=None)
Bases:
object(deprecated) Properties for defining a Workflow.
- Parameters:
default_run_properties (
Optional[Mapping[str,str]]) – (deprecated) A map of properties to use when this workflow is executed. Default: - no default run propertiesdescription (
Optional[str]) – (deprecated) A description of the workflow. Default: - no descriptionmax_concurrent_runs (
Union[int,float,None]) – (deprecated) The maximum number of concurrent runs allowed for the workflow. Default: - no limitworkflow_name (
Optional[str]) – (deprecated) Name of the workflow. Default: - a name will be generated
- Stability:
deprecated
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_glue_alpha as glue_alpha workflow_props = glue_alpha.WorkflowProps( default_run_properties={ "default_run_properties_key": "defaultRunProperties" }, description="description", max_concurrent_runs=123, workflow_name="workflowName" )
Attributes
- default_run_properties
(deprecated) A map of properties to use when this workflow is executed.
- Default:
no default run properties
- Stability:
deprecated
- description
(deprecated) A description of the workflow.
- Default:
no description
- Stability:
deprecated
- max_concurrent_runs
(deprecated) The maximum number of concurrent runs allowed for the workflow.
- Default:
no limit
- Stability:
deprecated
- workflow_name
(deprecated) Name of the workflow.
- Default:
a name will be generated
- Stability:
deprecated