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:30.246Z")
@Stability(Deprecated)
@Deprecated
public interface WorkflowProps
extends software.amazon.jsii.JsiiSerializable
Deprecated.
(deprecated) 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 classDeprecated.static final classDeprecated. -
Method Summary
Modifier and TypeMethodDescriptionstatic WorkflowProps.Builderbuilder()Deprecated.Deprecated.default StringDeprecated.default NumberDeprecated.default StringDeprecated.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDefaultRunProperties
Deprecated.(deprecated) A map of properties to use when this workflow is executed.Default: - no default run properties
-
getDescription
Deprecated.(deprecated) A description of the workflow.Default: - no description
-
getMaxConcurrentRuns
Deprecated.(deprecated) The maximum number of concurrent runs allowed for the workflow.Default: - no limit
-
getWorkflowName
Deprecated.(deprecated) Name of the workflow.Default: - a name will be generated
-
builder
Deprecated.- Returns:
- a
WorkflowProps.BuilderofWorkflowProps
-