Interface WorkflowProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
WorkflowProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.121.0 (build d7af9b9)",
date="2025-12-18T18:20:21.627Z")
@Stability(Experimental)
public interface WorkflowProps
extends software.amazon.jsii.JsiiSerializable
(experimental) 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.alpha.*;
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()(experimental) A map of properties to use when this workflow is executed.default String(experimental) A description of the workflow.default Number(experimental) The maximum number of concurrent runs allowed for the workflow.default String(experimental) Name of the workflow.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDefaultRunProperties
(experimental) A map of properties to use when this workflow is executed.Default: - no default run properties
-
getDescription
(experimental) A description of the workflow.Default: - no description
-
getMaxConcurrentRuns
(experimental) The maximum number of concurrent runs allowed for the workflow.Default: - no limit
-
getWorkflowName
(experimental) Name of the workflow.Default: - a name will be generated
-
builder
- Returns:
- a
WorkflowProps.BuilderofWorkflowProps
-