Package software.amazon.awscdk.triggers
Interface ITrigger.Jsii$Default
- All Superinterfaces:
software.constructs.IConstruct
,software.constructs.IConstruct.Jsii$Default
,software.constructs.IDependable
,software.constructs.IDependable.Jsii$Default
,ITrigger
,software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ITrigger.Jsii$Proxy
- Enclosing interface:
ITrigger
@Internal
public static interface ITrigger.Jsii$Default
extends ITrigger, software.constructs.IConstruct.Jsii$Default
Internal default implementation for
ITrigger
.-
Nested Class Summary
Nested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$Default, software.constructs.IConstruct.Jsii$Proxy
Nested classes/interfaces inherited from interface software.constructs.IDependable
software.constructs.IDependable.Jsii$Default, software.constructs.IDependable.Jsii$Proxy
Nested classes/interfaces inherited from interface software.amazon.awscdk.triggers.ITrigger
ITrigger.Jsii$Default, ITrigger.Jsii$Proxy
-
Method Summary
Modifier and TypeMethodDescriptiondefault void
executeAfter
(@NotNull software.constructs.Construct... scopes) Adds trigger dependencies.default void
executeBefore
(@NotNull software.constructs.Construct... scopes) Adds this trigger as a dependency on other constructs.default software.constructs.Node
getNode()
The tree node.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getNode
@Stability(Stable) @NotNull default software.constructs.Node getNode()The tree node.- Specified by:
getNode
in interfacesoftware.constructs.IConstruct
- Specified by:
getNode
in interfacesoftware.constructs.IConstruct.Jsii$Default
-
executeAfter
@Stability(Stable) default void executeAfter(@NotNull @NotNull software.constructs.Construct... scopes) Adds trigger dependencies.Execute this trigger only after these construct scopes have been provisioned.
- Specified by:
executeAfter
in interfaceITrigger
- Parameters:
scopes
- A list of construct scopes which this trigger will depend on. This parameter is required.
-
executeBefore
@Stability(Stable) default void executeBefore(@NotNull @NotNull software.constructs.Construct... scopes) Adds this trigger as a dependency on other constructs.This means that this trigger will get executed before the given construct(s).
- Specified by:
executeBefore
in interfaceITrigger
- Parameters:
scopes
- A list of construct scopes which will take a dependency on this trigger. This parameter is required.
-