Interface IWorkflow
- All Superinterfaces:
software.constructs.IConstruct,software.constructs.IDependable,IEnvironmentAware,IResource,software.amazon.jsii.JsiiSerializable
- All Known Subinterfaces:
IWorkflow.Jsii$Default
- All Known Implementing Classes:
IWorkflow.Jsii$Proxy,Workflow,WorkflowBase
@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)",
date="2026-09-10T17:52:11.265Z")
@Stability(Experimental)
public interface IWorkflow
extends software.amazon.jsii.JsiiSerializable, IResource
(experimental) The base interface for Glue Workflow.
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic interfaceInternal default implementation forIWorkflow.static final classA proxy class which represents a concrete javascript instance of this type. -
Method Summary
Modifier and TypeMethodDescriptionaddConditionalTrigger(String id, ConditionalTriggerOptions options) (experimental) Add a conditional (predicate-based) trigger to the workflow.addEventTrigger(String id, EventTriggerOptions options) (experimental) Add an EventBridge event-based trigger to the workflow.addOnDemandTrigger(String id, OnDemandTriggerOptions options) (experimental) Add an on-demand trigger to the workflow.addScheduledTrigger(String id, ScheduledTriggerOptions options) (experimental) Add a scheduled trigger to the workflow.(experimental) The ARN of the workflow.(experimental) The name of the workflow.Methods inherited from interface software.constructs.IConstruct
getNode, withMethods inherited from interface software.amazon.awscdk.interfaces.IEnvironmentAware
getEnvMethods inherited from interface software.amazon.awscdk.IResource
applyRemovalPolicy, getStackMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getWorkflowArn
(experimental) The ARN of the workflow. -
getWorkflowName
(experimental) The name of the workflow. -
addConditionalTrigger
@Stability(Experimental) @NotNull ITriggerRef addConditionalTrigger(@NotNull String id, @NotNull ConditionalTriggerOptions options) (experimental) Add a conditional (predicate-based) trigger to the workflow.- Parameters:
id- This parameter is required.options- This parameter is required.- Returns:
- a reference to the created trigger.
-
addEventTrigger
@Stability(Experimental) @NotNull ITriggerRef addEventTrigger(@NotNull String id, @NotNull EventTriggerOptions options) (experimental) Add an EventBridge event-based trigger to the workflow.- Parameters:
id- This parameter is required.options- This parameter is required.- Returns:
- a reference to the created trigger.
-
addOnDemandTrigger
@Stability(Experimental) @NotNull ITriggerRef addOnDemandTrigger(@NotNull String id, @NotNull OnDemandTriggerOptions options) (experimental) Add an on-demand trigger to the workflow.- Parameters:
id- This parameter is required.options- This parameter is required.- Returns:
- a reference to the created trigger.
-
addScheduledTrigger
@Stability(Experimental) @NotNull ITriggerRef addScheduledTrigger(@NotNull String id, @NotNull ScheduledTriggerOptions options) (experimental) Add a scheduled trigger to the workflow.- Parameters:
id- This parameter is required.options- This parameter is required.- Returns:
- a reference to the created trigger.
-