Class Workflow.Builder
java.lang.Object
software.amazon.awscdk.services.glue.alpha.Workflow.Builder
- All Implemented Interfaces:
software.amazon.jsii.Builder<Workflow>
- Enclosing class:
Workflow
@Stability(Experimental)
public static final class Workflow.Builder
extends Object
implements software.amazon.jsii.Builder<Workflow>
(experimental) A fluent builder for
Workflow.-
Method Summary
Modifier and TypeMethodDescriptionbuild()static Workflow.BuilderdefaultRunProperties(Map<String, String> defaultRunProperties) (experimental) A map of properties to use when this workflow is executed.description(String description) (experimental) A description of the workflow.maxConcurrentRuns(Number maxConcurrentRuns) (experimental) The maximum number of concurrent runs allowed for the workflow.workflowName(String workflowName) (experimental) Name of the workflow.
-
Method Details
-
create
@Stability(Experimental) public static Workflow.Builder create(software.constructs.Construct scope, String id) - Parameters:
scope- This parameter is required.id- This parameter is required.- Returns:
- a new instance of
Workflow.Builder.
-
defaultRunProperties
@Stability(Experimental) public Workflow.Builder defaultRunProperties(Map<String, String> defaultRunProperties) (experimental) A map of properties to use when this workflow is executed.Default: - no default run properties
- Parameters:
defaultRunProperties- A map of properties to use when this workflow is executed. This parameter is required.- Returns:
this
-
description
(experimental) A description of the workflow.Default: - no description
- Parameters:
description- A description of the workflow. This parameter is required.- Returns:
this
-
maxConcurrentRuns
(experimental) The maximum number of concurrent runs allowed for the workflow.Default: - no limit
- Parameters:
maxConcurrentRuns- The maximum number of concurrent runs allowed for the workflow. This parameter is required.- Returns:
this
-
workflowName
(experimental) Name of the workflow.Default: - a name will be generated
- Parameters:
workflowName- Name of the workflow. This parameter is required.- Returns:
this
-
build
-