Interface WorkflowProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
WorkflowProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)",
date="2026-09-17T14:54:05.122Z")
@Stability(Stable)
public interface WorkflowProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a Workflow.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.glue.*;
WorkflowProps workflowProps = WorkflowProps.builder()
.defaultRunProperties(Map.of(
"defaultRunPropertiesKey", "defaultRunProperties"))
.description("description")
.maxConcurrentRuns(123)
.workflowName("workflowName")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forWorkflowPropsstatic final classAn implementation forWorkflowProps -
Method Summary
Modifier and TypeMethodDescriptionstatic WorkflowProps.Builderbuilder()A map of properties to use when this workflow is executed.default StringA description of the workflow.default NumberThe maximum number of concurrent runs allowed for the workflow.default StringName of the workflow.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDefaultRunProperties
A map of properties to use when this workflow is executed.Default: - no default run properties
-
getDescription
A description of the workflow.Default: - no description
-
getMaxConcurrentRuns
The maximum number of concurrent runs allowed for the workflow.Default: - no limit
-
getWorkflowName
Name of the workflow.Default: - a name will be generated
-
builder
- Returns:
- a
WorkflowProps.BuilderofWorkflowProps
-