Interface SGEdge
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable,SGEntity
- All Known Implementing Classes:
SGEdge.Jsii$Proxy
@Generated(value="jsii-pacmak/1.82.0 (build 2d2ddd7)", date="2023-08-24T23:07:44.488Z") @Stability(Experimental) public interface SGEdge extends software.amazon.jsii.JsiiSerializable, SGEntity
(experimental) Serializable graph edge entity.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classSGEdge.BuilderA builder forSGEdgestatic classSGEdge.Jsii$ProxyAn implementation forSGEdge
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description static SGEdge.Builderbuilder()EdgeDirectionEnumgetDirection()(experimental) Indicates the direction in which the edge is directed.EdgeTypeEnumgetEdgeType()(experimental) Type of edge.StringgetSource()(experimental) UUID of edge source node (tail).StringgetTarget()(experimental) UUID of edge target node (head).-
Methods inherited from interface software.aws.awsprototypingsdk.cdkgraph.SGEntity
getAttributes, getFlags, getMetadata, getTags, getUuid
-
-
-
-
Method Detail
-
getDirection
@Stability(Experimental) @NotNull EdgeDirectionEnum getDirection()
(experimental) Indicates the direction in which the edge is directed.
-
getEdgeType
@Stability(Experimental) @NotNull EdgeTypeEnum getEdgeType()
(experimental) Type of edge.
-
getSource
@Stability(Experimental) @NotNull String getSource()
(experimental) UUID of edge source node (tail).
-
getTarget
@Stability(Experimental) @NotNull String getTarget()
(experimental) UUID of edge target node (head).
-
builder
@Stability(Experimental) static SGEdge.Builder builder()
- Returns:
- a
SGEdge.BuilderofSGEdge
-
-