Package software.constructs
Interface INodeFactory
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Subinterfaces:
INodeFactory.Jsii$Default
- All Known Implementing Classes:
INodeFactory.Jsii$Proxy
@Generated(value="jsii-pacmak/1.57.0 (build f614666)", date="2022-05-02T00:17:06.881Z") @Stability(Stable) public interface INodeFactory extends software.amazon.jsii.JsiiSerializable
A factory for attaching `Node`s to the construct.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
INodeFactory.Jsii$Default
Internal default implementation forINodeFactory
.static class
INodeFactory.Jsii$Proxy
A proxy class which represents a concrete javascript instance of this type.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Node
createNode(Construct host, IConstruct scope, String id)
Returns a new `Node` associated with `host`.
-
-
-
Method Detail
-
createNode
@Stability(Stable) @NotNull Node createNode(@NotNull Construct host, @NotNull IConstruct scope, @NotNull String id)
Returns a new `Node` associated with `host`.- Parameters:
host
- the associated construct. This parameter is required.scope
- the construct's scope (parent). This parameter is required.id
- the construct id. This parameter is required.
-
-