API Reference
Constructs
CdkGraph
CdkGraph construct is the cdk-graph framework controller that is responsible for computing the graph, storing serialized graph, and instrumenting plugins per the plugin contract.
Initializers
import software.aws.pdk.cdk_graph.CdkGraph;
CdkGraph.Builder.create(Construct root)
// .plugins(java.util.List<ICdkGraphPlugin>)
.build();
| Name | Type | Description |
|---|---|---|
root |
software.constructs.Construct |
No description. |
plugins |
java.util.List<ICdkGraphPlugin> |
List of plugins to extends the graph. |
rootRequired
- Type: software.constructs.Construct
pluginsOptional
- Type: java.util.List<ICdkGraphPlugin>
List of plugins to extends the graph.
Plugins are invoked at each phases in fifo order.
Methods
| Name | Description |
|---|---|
toString |
Returns a string representation of this construct. |
report |
Asynchronous report generation. This operation enables running expensive and non-synchronous report generation by plugins post synthesis. |
toString
public java.lang.String toString()
Returns a string representation of this construct.
report
public void report()
Asynchronous report generation. This operation enables running expensive and non-synchronous report generation by plugins post synthesis.
If a given plugin requires performing asynchronous operations or is general expensive, it should
utilize report rather than synthesize.
Static Functions
| Name | Description |
|---|---|
isConstruct |
Checks if x is a construct. |
isConstruct
import software.aws.pdk.cdk_graph.CdkGraph;
CdkGraph.isConstruct(java.lang.Object x)
Checks if x is a construct.
Use this method instead of instanceof to properly detect Construct
instances, even when the construct library is symlinked.
Explanation: in JavaScript, multiple copies of the constructs library on
disk are seen as independent, completely different libraries. As a
consequence, the class Construct in each copy of the constructs library
is seen as a different class, and an instance of one class will not test as
instanceof the other class. npm install will not create installations
like this, but users may manually symlink construct libraries together or
use a monorepo tool: in those cases, multiple copies of the constructs
library can be accidentally installed, and instanceof will behave
unpredictably. It is safest to avoid using instanceof, and using
this type-testing method instead.
xRequired
- Type: java.lang.Object
Any object.
Properties
| Name | Type | Description |
|---|---|---|
node |
software.constructs.Node |
The tree node. |
config |
java.util.Map |
Config. |
plugins |
java.util.List<ICdkGraphPlugin> |
List of plugins registered with this instance. |
root |
software.constructs.Construct |
No description. |
graphContext |
CdkGraphContext |
Get the context for the graph instance. |
nodeRequired
public Node getNode();
- Type: software.constructs.Node
The tree node.
configRequired
public java.util.Map<java.lang.String, java.lang.Object> getConfig();
- Type: java.util.Map
Config.
pluginsRequired
public java.util.List<ICdkGraphPlugin> getPlugins();
- Type: java.util.List<ICdkGraphPlugin>
List of plugins registered with this instance.
rootRequired
public Construct getRoot();
- Type: software.constructs.Construct
graphContextOptional
public CdkGraphContext getGraphContext();
- Type: CdkGraphContext
Get the context for the graph instance.
This will be undefined before construct synthesis has initiated.
Constants
| Name | Type | Description |
|---|---|---|
ID |
java.lang.String |
Fixed CdkGraph construct id. |
VERSION |
java.lang.String |
Current CdkGraph semantic version. |
IDRequired
public java.lang.String getId();
- Type: java.lang.String
Fixed CdkGraph construct id.
VERSIONRequired
public java.lang.String getVersion();
- Type: java.lang.String
Current CdkGraph semantic version.
Structs
CdkGraphArtifact
CdkGraph artifact definition.
Initializer
import software.aws.pdk.cdk_graph.CdkGraphArtifact;
CdkGraphArtifact.builder()
.filename(java.lang.String)
.filepath(java.lang.String)
.id(java.lang.String)
.source(java.lang.String)
// .description(java.lang.String)
.build();
Properties
| Name | Type | Description |
|---|---|---|
filename |
java.lang.String |
Filename of the artifact. |
filepath |
java.lang.String |
Full path where artifact is stored. |
id |
java.lang.String |
The unique type of the artifact. |
source |
java.lang.String |
The source of the artifact (such as plugin, or core system, etc). |
description |
java.lang.String |
Description of artifact. |
filenameRequired
public java.lang.String getFilename();
- Type: java.lang.String
Filename of the artifact.
filepathRequired
public java.lang.String getFilepath();
- Type: java.lang.String
Full path where artifact is stored.
idRequired
public java.lang.String getId();
- Type: java.lang.String
The unique type of the artifact.
sourceRequired
public java.lang.String getSource();
- Type: java.lang.String
The source of the artifact (such as plugin, or core system, etc).
descriptionOptional
public java.lang.String getDescription();
- Type: java.lang.String
Description of artifact.
ConstructInfo
Source information on a construct (class fqn and version).
Initializer
import software.aws.pdk.cdk_graph.ConstructInfo;
ConstructInfo.builder()
.fqn(java.lang.String)
.version(java.lang.String)
.build();
Properties
| Name | Type | Description |
|---|---|---|
fqn |
java.lang.String |
No description. |
version |
java.lang.String |
No description. |
fqnRequired
public java.lang.String getFqn();
- Type: java.lang.String
versionRequired
public java.lang.String getVersion();
- Type: java.lang.String
FilterValue
Filter value to use.
Initializer
import software.aws.pdk.cdk_graph.FilterValue;
FilterValue.builder()
// .regex(java.lang.String)
// .value(java.lang.String)
.build();
Properties
| Name | Type | Description |
|---|---|---|
regex |
java.lang.String |
String representation of a regex. |
value |
java.lang.String |
Raw value. |
regexOptional
public java.lang.String getRegex();
- Type: java.lang.String
String representation of a regex.
valueOptional
public java.lang.String getValue();
- Type: java.lang.String
Raw value.
ICdkGraphProps
{@link CdkGraph} props.
Initializer
import software.aws.pdk.cdk_graph.ICdkGraphProps;
ICdkGraphProps.builder()
// .plugins(java.util.List<ICdkGraphPlugin>)
.build();
Properties
| Name | Type | Description |
|---|---|---|
plugins |
java.util.List<ICdkGraphPlugin> |
List of plugins to extends the graph. |
pluginsOptional
public java.util.List<ICdkGraphPlugin> getPlugins();
- Type: java.util.List<ICdkGraphPlugin>
List of plugins to extends the graph.
Plugins are invoked at each phases in fifo order.
IFilter
A filter than can be applied to the graph.
Initializer
import software.aws.pdk.cdk_graph.IFilter;
IFilter.builder()
// .graph(IGraphFilter)
// .store(IGraphStoreFilter)
.build();
Properties
| Name | Type | Description |
|---|---|---|
graph |
IGraphFilter |
Graph Filter. |
store |
IGraphStoreFilter |
Store Filter. |
graphOptional
public IGraphFilter getGraph();
- Type: IGraphFilter
Graph Filter.
storeOptional
public IGraphStoreFilter getStore();
- Type: IGraphStoreFilter
Store Filter.
IGraphFilter
Graph filter.
Initializer
import software.aws.pdk.cdk_graph.IGraphFilter;
IGraphFilter.builder()
// .allNodes(java.lang.Boolean)
// .edge(IEdgePredicate)
// .inverse(java.lang.Boolean)
// .node(INodePredicate)
// .strategy(FilterStrategy)
.build();
Properties
| Name | Type | Description |
|---|---|---|
allNodes |
java.lang.Boolean |
Indicates that all nodes will be filtered, rather than just Resource and CfnResource nodes. |
edge |
IEdgePredicate |
Predicate to match edges. |
inverse |
java.lang.Boolean |
Indicates that matches will be filtered, as opposed to non-matches. |
node |
INodePredicate |
Predicate to match nodes. |
strategy |
FilterStrategy |
Filter strategy to apply to matching nodes. |
allNodesOptional
public java.lang.Boolean getAllNodes();
- Type: java.lang.Boolean
Indicates that all nodes will be filtered, rather than just Resource and CfnResource nodes.
By enabling this, all Stages, Stacks, and structural construct boundaries will be filtered as well. In general, most users intent is to operate against resources and desire to preserve structural groupings, which is common in most Cfn/Cdk based filtering where inputs are "include" lists.
Defaults to value of containing {@link IGraphFilterPlan.allNodes}
edgeOptional
public IEdgePredicate getEdge();
- Type: IEdgePredicate
Predicate to match edges.
Edges are evaluated after nodes are filtered.
inverseOptional
public java.lang.Boolean getInverse();
- Type: java.lang.Boolean
- Default: false - Preserve matches, and filter out non-matches.
Indicates that matches will be filtered, as opposed to non-matches.
The default follows common Javascript Array.filter precedence of preserving matches during filtering, while pruning non-matches.
nodeOptional
public INodePredicate getNode();
- Type: INodePredicate
Predicate to match nodes.
strategyOptional
public FilterStrategy getStrategy();
- Type: FilterStrategy
- Default: {FilterStrategy.PRUNE}
Filter strategy to apply to matching nodes.
Edges do not have a strategy, they are always pruned.
IGraphFilterPlan
Graph filter plan.
Initializer
import software.aws.pdk.cdk_graph.IGraphFilterPlan;
IGraphFilterPlan.builder()
// .allNodes(java.lang.Boolean)
// .filters(java.util.List<IFilter>)
// .focus(IGraphFilterPlanFocusConfig)
// .order(ConstructOrder)
// .preset(FilterPreset)
.build();
Properties
| Name | Type | Description |
|---|---|---|
allNodes |
java.lang.Boolean |
Indicates that all nodes will be filtered, rather than just Resource and CfnResource nodes. |
filters |
java.util.List<IFilter> |
Ordered list of {@link IGraphFilter} and {@link IGraphStoreFilter} filters to apply to the store. |
focus |
IGraphFilterPlanFocusConfig |
Config to focus the graph on specific node. |
order |
software.constructs.ConstructOrder |
The order to visit nodes and edges during filtering. |
preset |
FilterPreset |
Optional preset filter to apply before other filters. |
allNodesOptional
public java.lang.Boolean getAllNodes();
- Type: java.lang.Boolean
- Default: false By default only Resource and CfnResource nodes are filtered.
Indicates that all nodes will be filtered, rather than just Resource and CfnResource nodes.
By enabling this, all Stages, Stacks, and structural construct boundaries will be filtered as well. In general, most users intent is to operate against resources and desire to preserve structural groupings, which is common in most Cfn/Cdk based filtering where inputs are "include" lists.
filtersOptional
public java.util.List<IFilter> getFilters();
- Type: java.util.List<IFilter>
Ordered list of {@link IGraphFilter} and {@link IGraphStoreFilter} filters to apply to the store.
- Filters are applied after the preset filtering is applied if present.
- Filters are applied sequentially against all nodes, as opposed to IAspect.visitor pattern which are sequentially applied per node.
focusOptional
public IGraphFilterPlanFocusConfig getFocus();
Config to focus the graph on specific node.
orderOptional
public ConstructOrder getOrder();
- Type: software.constructs.ConstructOrder
- Default: {ConstructOrder.PREORDER}
The order to visit nodes and edges during filtering.
presetOptional
public FilterPreset getPreset();
- Type: FilterPreset
Optional preset filter to apply before other filters.
IGraphFilterPlanFocusConfig
Initializer
import software.aws.pdk.cdk_graph.IGraphFilterPlanFocusConfig;
IGraphFilterPlanFocusConfig.builder()
.filter(IFilterFocusCallback)
// .noHoist(java.lang.Boolean)
.build();
Properties
| Name | Type | Description |
|---|---|---|
filter |
IFilterFocusCallback |
The node or resolver to determine the node to focus on. |
noHoist |
java.lang.Boolean |
Indicates if ancestral containers are preserved (eg: Stages, Stack). |
filterRequired
public IFilterFocusCallback getFilter();
- Type: IFilterFocusCallback
The node or resolver to determine the node to focus on.
noHoistOptional
public java.lang.Boolean getNoHoist();
- Type: java.lang.Boolean
- Default: true
Indicates if ancestral containers are preserved (eg: Stages, Stack).
If false, the "focused node" will be hoisted to the graph root and all ancestors will be pruned.
If true, the "focused" will be left in-place, while all siblings and non-scope ancestors will be pruned.
InferredNodeProps
Inferred node props.
Initializer
import software.aws.pdk.cdk_graph.InferredNodeProps;
InferredNodeProps.builder()
.uuid(java.lang.String)
// .attributes(java.util.Map<java.lang.String, java.lang.String)
// .attributes(java.lang.Number)
// .attributes(java.lang.Boolean)
// .attributes(PlainObject)
// .attributes(java.util.List<java.lang.String)
// .attributes(java.lang.Number)
// .attributes(java.lang.Boolean)
// .attributes(PlainObject>>)
// .flags(java.util.List<FlagEnum>)
// .metadata(java.util.List<MetadataEntry>)
// .tags(java.util.Map<java.lang.String, java.lang.String>)
.dependencies(java.util.List<java.lang.String>)
.unresolvedReferences(java.util.List<SGUnresolvedReference>)
// .cfnType(java.lang.String)
// .constructInfo(ConstructInfo)
// .logicalId(java.lang.String)
.build();
Properties
| Name | Type | Description |
|---|---|---|
uuid |
java.lang.String |
Universally unique identity. |
attributes |
java.util.Map |
Serializable entity attributes. |
flags |
java.util.List<FlagEnum> |
Serializable entity flags. |
metadata |
java.util.List |
Serializable entity metadata. |
tags |
java.util.Map |
Serializable entity tags. |
dependencies |
java.util.List |
No description. |
unresolvedReferences |
java.util.List<SGUnresolvedReference> |
No description. |
cfnType |
java.lang.String |
No description. |
constructInfo |
ConstructInfo |
No description. |
logicalId |
java.lang.String |
No description. |
uuidRequired
public java.lang.String getUuid();
- Type: java.lang.String
Universally unique identity.
attributesOptional
public java.lang.Object getAttributes();
- Type: java.util.Map
PlainObject\ OR java.util.List\ PlainObject\>>
Serializable entity attributes.
flagsOptional
public java.util.List<FlagEnum> getFlags();
- Type: java.util.List<FlagEnum>
Serializable entity flags.
metadataOptional
public java.util.List<MetadataEntry> getMetadata();
- Type: java.util.List
Serializable entity metadata.
tagsOptional
public java.util.Map<java.lang.String, java.lang.String> getTags();
- Type: java.util.Map
Serializable entity tags.
dependenciesRequired
public java.util.List<java.lang.String> getDependencies();
- Type: java.util.List
unresolvedReferencesRequired
public java.util.List<SGUnresolvedReference> getUnresolvedReferences();
- Type: java.util.List<SGUnresolvedReference>
cfnTypeOptional
public java.lang.String getCfnType();
- Type: java.lang.String
constructInfoOptional
public ConstructInfo getConstructInfo();
- Type: ConstructInfo
logicalIdOptional
public java.lang.String getLogicalId();
- Type: java.lang.String
PlainObject
Serializable plain object value (JSII supported).
Initializer
import software.aws.pdk.cdk_graph.PlainObject;
PlainObject.builder()
.build();
SGEdge
Serializable graph edge entity.
Initializer
import software.aws.pdk.cdk_graph.SGEdge;
SGEdge.builder()
.uuid(java.lang.String)
// .attributes(java.util.Map<java.lang.String, java.lang.String)
// .attributes(java.lang.Number)
// .attributes(java.lang.Boolean)
// .attributes(PlainObject)
// .attributes(java.util.List<java.lang.String)
// .attributes(java.lang.Number)
// .attributes(java.lang.Boolean)
// .attributes(PlainObject>>)
// .flags(java.util.List<FlagEnum>)
// .metadata(java.util.List<MetadataEntry>)
// .tags(java.util.Map<java.lang.String, java.lang.String>)
.direction(EdgeDirectionEnum)
.edgeType(EdgeTypeEnum)
.source(java.lang.String)
.target(java.lang.String)
.build();
Properties
| Name | Type | Description |
|---|---|---|
uuid |
java.lang.String |
Universally unique identity. |
attributes |
java.util.Map |
Serializable entity attributes. |
flags |
java.util.List<FlagEnum> |
Serializable entity flags. |
metadata |
java.util.List |
Serializable entity metadata. |
tags |
java.util.Map |
Serializable entity tags. |
direction |
EdgeDirectionEnum |
Indicates the direction in which the edge is directed. |
edgeType |
EdgeTypeEnum |
Type of edge. |
source |
java.lang.String |
UUID of edge source node (tail). |
target |
java.lang.String |
UUID of edge target node (head). |
uuidRequired
public java.lang.String getUuid();
- Type: java.lang.String
Universally unique identity.
attributesOptional
public java.lang.Object getAttributes();
- Type: java.util.Map
PlainObject\ OR java.util.List\ PlainObject\>>
Serializable entity attributes.
flagsOptional
public java.util.List<FlagEnum> getFlags();
- Type: java.util.List<FlagEnum>
Serializable entity flags.
metadataOptional
public java.util.List<MetadataEntry> getMetadata();
- Type: java.util.List
Serializable entity metadata.
tagsOptional
public java.util.Map<java.lang.String, java.lang.String> getTags();
- Type: java.util.Map
Serializable entity tags.
directionRequired
public EdgeDirectionEnum getDirection();
- Type: EdgeDirectionEnum
Indicates the direction in which the edge is directed.
edgeTypeRequired
public EdgeTypeEnum getEdgeType();
- Type: EdgeTypeEnum
Type of edge.
sourceRequired
public java.lang.String getSource();
- Type: java.lang.String
UUID of edge source node (tail).
targetRequired
public java.lang.String getTarget();
- Type: java.lang.String
UUID of edge target node (head).
SGEntity
Serializable graph entity.
Initializer
import software.aws.pdk.cdk_graph.SGEntity;
SGEntity.builder()
.uuid(java.lang.String)
// .attributes(java.util.Map<java.lang.String, java.lang.String)
// .attributes(java.lang.Number)
// .attributes(java.lang.Boolean)
// .attributes(PlainObject)
// .attributes(java.util.List<java.lang.String)
// .attributes(java.lang.Number)
// .attributes(java.lang.Boolean)
// .attributes(PlainObject>>)
// .flags(java.util.List<FlagEnum>)
// .metadata(java.util.List<MetadataEntry>)
// .tags(java.util.Map<java.lang.String, java.lang.String>)
.build();
Properties
| Name | Type | Description |
|---|---|---|
uuid |
java.lang.String |
Universally unique identity. |
attributes |
java.util.Map |
Serializable entity attributes. |
flags |
java.util.List<FlagEnum> |
Serializable entity flags. |
metadata |
java.util.List |
Serializable entity metadata. |
tags |
java.util.Map |
Serializable entity tags. |
uuidRequired
public java.lang.String getUuid();
- Type: java.lang.String
Universally unique identity.
attributesOptional
public java.lang.Object getAttributes();
- Type: java.util.Map
PlainObject\ OR java.util.List\ PlainObject\>>
Serializable entity attributes.
flagsOptional
public java.util.List<FlagEnum> getFlags();
- Type: java.util.List<FlagEnum>
Serializable entity flags.
metadataOptional
public java.util.List<MetadataEntry> getMetadata();
- Type: java.util.List
Serializable entity metadata.
tagsOptional
public java.util.Map<java.lang.String, java.lang.String> getTags();
- Type: java.util.Map
Serializable entity tags.
SGGraphStore
Serializable graph store.
Initializer
import software.aws.pdk.cdk_graph.SGGraphStore;
SGGraphStore.builder()
.edges(java.util.List<SGEdge>)
.tree(SGNode)
.version(java.lang.String)
.build();
Properties
| Name | Type | Description |
|---|---|---|
edges |
java.util.List<SGEdge> |
List of edges. |
tree |
SGNode |
Node tree. |
version |
java.lang.String |
Store version. |
edgesRequired
public java.util.List<SGEdge> getEdges();
- Type: java.util.List<SGEdge>
List of edges.
treeRequired
public SGNode getTree();
- Type: SGNode
Node tree.
versionRequired
public java.lang.String getVersion();
- Type: java.lang.String
Store version.
SGNode
Serializable graph node entity.
Initializer
import software.aws.pdk.cdk_graph.SGNode;
SGNode.builder()
.uuid(java.lang.String)
// .attributes(java.util.Map<java.lang.String, java.lang.String)
// .attributes(java.lang.Number)
// .attributes(java.lang.Boolean)
// .attributes(PlainObject)
// .attributes(java.util.List<java.lang.String)
// .attributes(java.lang.Number)
// .attributes(java.lang.Boolean)
// .attributes(PlainObject>>)
// .flags(java.util.List<FlagEnum>)
// .metadata(java.util.List<MetadataEntry>)
// .tags(java.util.Map<java.lang.String, java.lang.String>)
.id(java.lang.String)
.nodeType(NodeTypeEnum)
.path(java.lang.String)
// .cfnType(java.lang.String)
// .children(java.util.Map<java.lang.String, SGNode>)
// .constructInfo(ConstructInfo)
// .edges(java.util.List<java.lang.String>)
// .logicalId(java.lang.String)
// .parent(java.lang.String)
// .stack(java.lang.String)
.build();
Properties
| Name | Type | Description |
|---|---|---|
uuid |
java.lang.String |
Universally unique identity. |
attributes |
java.util.Map |
Serializable entity attributes. |
flags |
java.util.List<FlagEnum> |
Serializable entity flags. |
metadata |
java.util.List |
Serializable entity metadata. |
tags |
java.util.Map |
Serializable entity tags. |
id |
java.lang.String |
Node id within parent (unique only between parent child nodes). |
nodeType |
NodeTypeEnum |
Node type. |
path |
java.lang.String |
Node path. |
cfnType |
java.lang.String |
CloudFormation resource type for this node. |
children |
java.util.Map |
Child node record. |
constructInfo |
ConstructInfo |
Synthesized construct information defining jii resolution data. |
edges |
java.util.List |
List of edge UUIDs where this node is the source. |
logicalId |
java.lang.String |
Logical id of the node, which is only unique within containing stack. |
parent |
java.lang.String |
UUID of node parent. |
stack |
java.lang.String |
UUID of node stack. |
uuidRequired
public java.lang.String getUuid();
- Type: java.lang.String
Universally unique identity.
attributesOptional
public java.lang.Object getAttributes();
- Type: java.util.Map
PlainObject\ OR java.util.List\ PlainObject\>>
Serializable entity attributes.
flagsOptional
public java.util.List<FlagEnum> getFlags();
- Type: java.util.List<FlagEnum>
Serializable entity flags.
metadataOptional
public java.util.List<MetadataEntry> getMetadata();
- Type: java.util.List
Serializable entity metadata.
tagsOptional
public java.util.Map<java.lang.String, java.lang.String> getTags();
- Type: java.util.Map
Serializable entity tags.
idRequired
public java.lang.String getId();
- Type: java.lang.String
Node id within parent (unique only between parent child nodes).
nodeTypeRequired
public NodeTypeEnum getNodeType();
- Type: NodeTypeEnum
Node type.
pathRequired
public java.lang.String getPath();
- Type: java.lang.String
Node path.
cfnTypeOptional
public java.lang.String getCfnType();
- Type: java.lang.String
CloudFormation resource type for this node.
childrenOptional
public java.util.Map<java.lang.String, SGNode> getChildren();
- Type: java.util.Map
SGNode\>
Child node record.
constructInfoOptional
public ConstructInfo getConstructInfo();
- Type: ConstructInfo
Synthesized construct information defining jii resolution data.
edgesOptional
public java.util.List<java.lang.String> getEdges();
- Type: java.util.List
List of edge UUIDs where this node is the source.
logicalIdOptional
public java.lang.String getLogicalId();
- Type: java.lang.String
Logical id of the node, which is only unique within containing stack.
parentOptional
public java.lang.String getParent();
- Type: java.lang.String
UUID of node parent.
stackOptional
public java.lang.String getStack();
- Type: java.lang.String
UUID of node stack.
SGUnresolvedReference
Unresolved reference struct.
During graph computation references are unresolved and stored in this struct.
Initializer
import software.aws.pdk.cdk_graph.SGUnresolvedReference;
SGUnresolvedReference.builder()
.referenceType(ReferenceTypeEnum)
.source(java.lang.String)
.target(java.lang.String)
// .value(java.lang.String)
// .value(java.lang.Number)
// .value(java.lang.Boolean)
// .value(PlainObject)
// .value(java.util.List<java.lang.String)
// .value(java.lang.Number)
// .value(java.lang.Boolean)
// .value(PlainObject>)
.build();
Properties
| Name | Type | Description |
|---|---|---|
referenceType |
ReferenceTypeEnum |
No description. |
source |
java.lang.String |
No description. |
target |
java.lang.String |
No description. |
value |
java.lang.String OR java.lang.Number OR java.lang.Boolean OR PlainObject OR java.util.List |
No description. |
referenceTypeRequired
public ReferenceTypeEnum getReferenceType();
- Type: ReferenceTypeEnum
sourceRequired
public java.lang.String getSource();
- Type: java.lang.String
targetRequired
public java.lang.String getTarget();
- Type: java.lang.String
valueOptional
public java.lang.Object getValue();
- Type: java.lang.String OR java.lang.Number OR java.lang.Boolean OR PlainObject OR java.util.List
PlainObject\>
Classes
AppNode
AppNode defines a cdk App.
Initializers
import software.aws.pdk.cdk_graph.AppNode;
new AppNode(IAppNodeProps props);
| Name | Type | Description |
|---|---|---|
props |
IAppNodeProps |
No description. |
propsRequired
- Type: IAppNodeProps
Methods
| Name | Description |
|---|---|
addAttribute |
Add attribute. |
addFlag |
Add flag. |
addMetadata |
Add metadata entry. |
addTag |
Add tag. |
applyData |
Applies data (attributes, metadata, tags, flag) to entity. |
findMetadata |
Retrieves all metadata entries of a given type. |
getAttribute |
Get attribute by key. |
getTag |
Get tag by key. |
hasAttribute |
Indicates if entity has a given attribute defined, and optionally with a specific value. |
hasFlag |
Indicates if entity has a given flag. |
hasMetadata |
Indicates if entity has matching metadata entry. |
hasTag |
Indicates if entity has tag, optionally verifying tag value. |
mutateDestroy |
Destroys this node by removing all references and removing this node from the store. |
setAttribute |
Set attribute. |
setTag |
Set tag. |
addChild |
Add child node. |
addLink |
Add link to another node. |
addReverseLink |
Add link from another node. |
doesDependOn |
Indicates if this node depends on another node. |
doesReference |
Indicates if this node references another node. |
find |
Recursively find the nearest sub-node matching predicate. |
findAll |
Return this construct and all of its sub-nodes in the given order. |
findAllLinks |
Return all direct links of this node and that of all sub-nodes. |
findAncestor |
Find nearest ancestor of this node matching given predicate. |
findChild |
Find child with given id. |
findLink |
Find link of this node based on predicate. |
findLinks |
Find all links of this node based on predicate. |
getCfnProp |
Get specific CloudFormation property. |
getChild |
Get child node with given id. |
getLinkChains |
Resolve all link chains. |
getNearestAncestor |
Gets the nearest common ancestor shared between this node and another node. |
isAncestor |
Indicates if a specific node is an ancestor of this node. |
isChild |
Indicates if specific node is a child of this node. |
mutateCollapse |
Collapses all sub-nodes of this node into this node. |
mutateCollapseTo |
Collapses this node into an ancestor. |
mutateCollapseToParent |
Collapses this node into it's parent node. |
mutateHoist |
Hoist this node to an ancestor by removing it from its current parent node and in turn moving it to the ancestor. |
mutateMove |
Move this node into a new parent node. |
mutateRemoveChild |
Remove a child node from this node. |
mutateRemoveLink |
Remove a link from this node. |
mutateRemoveReverseLink |
Remove a link to this node. |
mutateUncluster |
Hoist all children to parent and collapse node to parent. |
toString |
Get string representation of this node. |
addAttribute
public void addAttribute(java.lang.String key, java.lang.Object value)
Add attribute.
keyRequired
- Type: java.lang.String
valueRequired
- Type: java.lang.Object
addFlag
public void addFlag(FlagEnum flag)
Add flag.
flagRequired
- Type: FlagEnum
addMetadata
public void addMetadata(java.lang.String metadataType, java.lang.Object data)
Add metadata entry.
metadataTypeRequired
- Type: java.lang.String
dataRequired
- Type: java.lang.Object
addTag
public void addTag(java.lang.String key, java.lang.String value)
Add tag.
keyRequired
- Type: java.lang.String
valueRequired
- Type: java.lang.String
applyData
public void applyData(IBaseEntityDataProps data)
public void applyData(IBaseEntityDataProps data, java.lang.Boolean overwrite)
public void applyData(IBaseEntityDataProps data, java.lang.Boolean overwrite, java.lang.Boolean applyFlags)
Applies data (attributes, metadata, tags, flag) to entity.
Generally used only for mutations such as collapse and consume to retain data.
dataRequired
- Type: IBaseEntityDataProps
The data to apply.
overwriteOptional
- Type: java.lang.Boolean
applyFlagsOptional
- Type: java.lang.Boolean
Indicates if data is overwritten - Indicates if flags should be applied.
findMetadata
public java.util.List<MetadataEntry> findMetadata(java.lang.String metadataType)
Retrieves all metadata entries of a given type.
metadataTypeRequired
- Type: java.lang.String
getAttribute
public java.lang.Object getAttribute(java.lang.String key)
Get attribute by key.
keyRequired
- Type: java.lang.String
getTag
public java.lang.String getTag(java.lang.String key)
Get tag by key.
keyRequired
- Type: java.lang.String
hasAttribute
public java.lang.Boolean hasAttribute(java.lang.String key)
public java.lang.Boolean hasAttribute(java.lang.String key, java.lang.Object value)
Indicates if entity has a given attribute defined, and optionally with a specific value.
keyRequired
- Type: java.lang.String
valueOptional
- Type: java.lang.Object
hasFlag
public java.lang.Boolean hasFlag(FlagEnum flag)
Indicates if entity has a given flag.
flagRequired
- Type: FlagEnum
hasMetadata
public java.lang.Boolean hasMetadata(java.lang.String metadataType, java.lang.Object data)
Indicates if entity has matching metadata entry.
metadataTypeRequired
- Type: java.lang.String
dataRequired
- Type: java.lang.Object
hasTag
public java.lang.Boolean hasTag(java.lang.String key)
public java.lang.Boolean hasTag(java.lang.String key, java.lang.String value)
Indicates if entity has tag, optionally verifying tag value.
keyRequired
- Type: java.lang.String
valueOptional
- Type: java.lang.String
mutateDestroy
public void mutateDestroy()
public void mutateDestroy(java.lang.Boolean strict)
Destroys this node by removing all references and removing this node from the store.
strictOptional
- Type: java.lang.Boolean
Indicates that this node must not have references.
setAttribute
public void setAttribute(java.lang.String key, java.lang.Object value)
Set attribute.
This will overwrite existing attribute.
keyRequired
- Type: java.lang.String
valueRequired
- Type: java.lang.Object
setTag
public void setTag(java.lang.String key, java.lang.String value)
Set tag.
Will overwrite existing tag.
keyRequired
- Type: java.lang.String
valueRequired
- Type: java.lang.String
addChild
public void addChild(Node node)
Add child node.
nodeRequired
- Type: Node
addLink
public void addLink(Edge edge)
Add link to another node.
edgeRequired
- Type: Edge
addReverseLink
public void addReverseLink(Edge edge)
Add link from another node.
edgeRequired
- Type: Edge
doesDependOn
public java.lang.Boolean doesDependOn(Node node)
Indicates if this node depends on another node.
nodeRequired
- Type: Node
doesReference
public java.lang.Boolean doesReference(Node node)
Indicates if this node references another node.
nodeRequired
- Type: Node
find
public Node find(INodePredicate predicate)
Recursively find the nearest sub-node matching predicate.
predicateRequired
- Type: INodePredicate
findAll
public java.util.List<Node> findAll()
public java.util.List<Node> findAll(IFindNodeOptions options)
Return this construct and all of its sub-nodes in the given order.
Optionally filter nodes based on predicate.
optionsOptional
- Type: IFindNodeOptions
findAllLinks
public java.util.List<Edge> findAllLinks()
public java.util.List<Edge> findAllLinks(IFindEdgeOptions options)
Return all direct links of this node and that of all sub-nodes.
Optionally filter links based on predicate.
optionsOptional
- Type: IFindEdgeOptions
findAncestor
public Node findAncestor(INodePredicate predicate)
public Node findAncestor(INodePredicate predicate, java.lang.Number max)
Find nearest ancestor of this node matching given predicate.
predicateRequired
- Type: INodePredicate
Predicate to match ancestor.
maxOptional
- Type: java.lang.Number
findChild
public Node findChild(java.lang.String id)
Find child with given id.
Similar to find but does not throw error if no child found.
idRequired
- Type: java.lang.String
findLink
public Edge findLink(IEdgePredicate predicate)
public Edge findLink(IEdgePredicate predicate, java.lang.Boolean reverse)
public Edge findLink(IEdgePredicate predicate, java.lang.Boolean reverse, java.lang.Boolean follow)
public Edge findLink(IEdgePredicate predicate, java.lang.Boolean reverse, java.lang.Boolean follow, java.lang.Boolean direct)
Find link of this node based on predicate.
By default this will follow link chains to evaluate the predicate against and return the matching direct link of this node.
predicateRequired
- Type: IEdgePredicate
Edge predicate function to match edge.
reverseOptional
- Type: java.lang.Boolean
Indicates if links are search in reverse order.
followOptional
- Type: java.lang.Boolean
Indicates if link chain is followed.
directOptional
- Type: java.lang.Boolean
Indicates that only direct links should be searched.
findLinks
public java.util.List<Edge> findLinks(IEdgePredicate predicate)
public java.util.List<Edge> findLinks(IEdgePredicate predicate, java.lang.Boolean reverse)
public java.util.List<Edge> findLinks(IEdgePredicate predicate, java.lang.Boolean reverse, java.lang.Boolean follow)
public java.util.List<Edge> findLinks(IEdgePredicate predicate, java.lang.Boolean reverse, java.lang.Boolean follow, java.lang.Boolean direct)
Find all links of this node based on predicate.
By default this will follow link chains to evaluate the predicate against and return the matching direct links of this node.
predicateRequired
- Type: IEdgePredicate
Edge predicate function to match edge.
reverseOptional
- Type: java.lang.Boolean
Indicates if links are search in reverse order.
followOptional
- Type: java.lang.Boolean
Indicates if link chain is followed.
directOptional
- Type: java.lang.Boolean
Indicates that only direct links should be searched.
getCfnProp
public java.lang.String OR java.lang.Number OR java.lang.Boolean OR PlainObject OR java.util.List<java.lang.String OR java.lang.Number OR java.lang.Boolean OR PlainObject> getCfnProp(java.lang.String key)
Get specific CloudFormation property.
keyRequired
- Type: java.lang.String
getChild
public Node getChild(java.lang.String id)
Get child node with given id.
idRequired
- Type: java.lang.String
getLinkChains
public java.util.List<java.util.List<java.lang.Object>> getLinkChains()
public java.util.List<java.util.List<java.lang.Object>> getLinkChains(java.lang.Boolean reverse)
Resolve all link chains.
reverseOptional
- Type: java.lang.Boolean
getNearestAncestor
public Node getNearestAncestor(Node node)
Gets the nearest common ancestor shared between this node and another node.
nodeRequired
- Type: Node
isAncestor
public java.lang.Boolean isAncestor(Node ancestor)
Indicates if a specific node is an ancestor of this node.
ancestorRequired
- Type: Node
isChild
public java.lang.Boolean isChild(Node node)
Indicates if specific node is a child of this node.
nodeRequired
- Type: Node
mutateCollapse
public void mutateCollapse()
Collapses all sub-nodes of this node into this node.
mutateCollapseTo
public Node mutateCollapseTo(Node ancestor)
Collapses this node into an ancestor.
ancestorRequired
- Type: Node
mutateCollapseToParent
public Node mutateCollapseToParent()
Collapses this node into it's parent node.
mutateHoist
public void mutateHoist(Node newParent)
Hoist this node to an ancestor by removing it from its current parent node and in turn moving it to the ancestor.
newParentRequired
- Type: Node
mutateMove
public void mutateMove(Node newParent)
Move this node into a new parent node.
newParentRequired
- Type: Node
The parent to move this node to.
mutateRemoveChild
public java.lang.Boolean mutateRemoveChild(Node node)
Remove a child node from this node.
nodeRequired
- Type: Node
mutateRemoveLink
public java.lang.Boolean mutateRemoveLink(Edge link)
Remove a link from this node.
linkRequired
- Type: Edge
mutateRemoveReverseLink
public java.lang.Boolean mutateRemoveReverseLink(Edge link)
Remove a link to this node.
linkRequired
- Type: Edge
mutateUncluster
public void mutateUncluster()
Hoist all children to parent and collapse node to parent.
toString
public java.lang.String toString()
Get string representation of this node.
Static Functions
| Name | Description |
|---|---|
isAppNode |
Indicates if node is a {@link AppNode}. |
isAppNode
import software.aws.pdk.cdk_graph.AppNode;
AppNode.isAppNode(Node node)
Indicates if node is a {@link AppNode}.
nodeRequired
- Type: Node
Properties
| Name | Type | Description |
|---|---|---|
attributes |
java.util.Map |
Get readonly record of all attributes. |
flags |
java.util.List<FlagEnum> |
Get readonly list of all flags. |
isDestroyed |
java.lang.Boolean |
Indicates if the entity has been destroyed (eg: removed from store). |
isMutated |
java.lang.Boolean |
Indicates if the entity has had destructive mutations applied. |
metadata |
java.util.List |
Get readonly list of all metadata entries. |
store |
Store |
Reference to the store. |
tags |
java.util.Map |
Get readonly record of all tags. |
uuid |
java.lang.String |
Universally unique identifier. |
allowDestructiveMutations |
java.lang.Boolean |
Indicates if this node allows destructive mutations. |
children |
java.util.List<Node> |
Get all direct child nodes. |
dependedOnBy |
java.util.List<Node> |
Get list of Nodes that depend on this node. |
dependencies |
java.util.List<Node> |
Get list of Nodes that this node depends on. |
dependencyLinks |
java.util.List<Dependency> |
Gets list of {@link Dependency} links (edges) where this node is the source. |
depth |
java.lang.Number |
Indicates the depth of the node relative to root (0). |
id |
java.lang.String |
Node id, which is only unique within parent scope. |
isAsset |
java.lang.Boolean |
Indicates if this node is considered a {@link FlagEnum.ASSET}. |
isCfnFqn |
java.lang.Boolean |
Indicates if node ConstructInfoFqn denotes a aws-cdk-lib.*.Cfn* construct. |
isCluster |
java.lang.Boolean |
Indicates if this node is considered a {@link FlagEnum.CLUSTER}. |
isCustomResource |
java.lang.Boolean |
Indicates if node is a Custom Resource. |
isExtraneous |
java.lang.Boolean |
Indicates if this node is considered a {@link FlagEnum.EXTRANEOUS} node or determined to be extraneous: - Clusters that contain no children. |
isGraphContainer |
java.lang.Boolean |
Indicates if this node is considered a {@link FlagEnum.GRAPH_CONTAINER}. |
isLeaf |
java.lang.Boolean |
Indicates if this node is a leaf node, which means it does not have children. |
isTopLevel |
java.lang.Boolean |
Indicates if node is direct child of the graph root node. |
links |
java.util.List<Edge> |
Gets all links (edges) in which this node is the source. |
nodeType |
NodeTypeEnum |
Type of node. |
path |
java.lang.String |
Path of the node. |
referencedBy |
java.util.List<Node> |
Get list of Nodes that reference this node. |
referenceLinks |
java.util.List<Reference> |
Gets list of {@link Reference} links (edges) where this node is the source. |
references |
java.util.List<Node> |
Get list of Nodes that this node references. |
reverseDependencyLinks |
java.util.List<Dependency> |
Gets list of {@link Dependency} links (edges) where this node is the target. |
reverseLinks |
java.util.List<Edge> |
Gets all links (edges) in which this node is the target. |
reverseReferenceLinks |
java.util.List<Reference> |
Gets list of {@link Reference} links (edges) where this node is the target. |
scopes |
java.util.List<Node> |
Gets descending ordered list of ancestors from the root. |
siblings |
java.util.List<Node> |
Get list of siblings of this node. |
cfnProps |
PlainObject |
Gets CloudFormation properties for this node. |
cfnType |
java.lang.String |
Get the CloudFormation resource type for this node. |
constructInfo |
ConstructInfo |
Synthesized construct information defining jii resolution data. |
constructInfoFqn |
java.lang.String |
Synthesized construct information defining jii resolution data. |
logicalId |
java.lang.String |
Logical id of the node, which is only unique within containing stack. |
parent |
Node |
Parent node. |
rootStack |
StackNode |
Get root stack. |
stack |
StackNode |
Stack the node is contained in. |
attributesRequired
public java.lang.Object getAttributes();
- Type: java.util.Map
PlainObject\ OR java.util.List\ PlainObject\>>
Get readonly record of all attributes.
flagsRequired
public java.util.List<FlagEnum> getFlags();
- Type: java.util.List<FlagEnum>
Get readonly list of all flags.
isDestroyedRequired
public java.lang.Boolean getIsDestroyed();
- Type: java.lang.Boolean
Indicates if the entity has been destroyed (eg: removed from store).
isMutatedRequired
public java.lang.Boolean getIsMutated();
- Type: java.lang.Boolean
Indicates if the entity has had destructive mutations applied.
metadataRequired
public java.util.List<MetadataEntry> getMetadata();
- Type: java.util.List
Get readonly list of all metadata entries.
storeRequired
public Store getStore();
- Type: Store
Reference to the store.
tagsRequired
public java.util.Map<java.lang.String, java.lang.String> getTags();
- Type: java.util.Map
Get readonly record of all tags.
uuidRequired
public java.lang.String getUuid();
- Type: java.lang.String
Universally unique identifier.
allowDestructiveMutationsRequired
public java.lang.Boolean getAllowDestructiveMutations();
- Type: java.lang.Boolean
Indicates if this node allows destructive mutations.
childrenRequired
public java.util.List<Node> getChildren();
- Type: java.util.List<Node>
Get all direct child nodes.
dependedOnByRequired
public java.util.List<Node> getDependedOnBy();
- Type: java.util.List<Node>
Get list of Nodes that depend on this node.
dependenciesRequired
public java.util.List<Node> getDependencies();
- Type: java.util.List<Node>
Get list of Nodes that this node depends on.
dependencyLinksRequired
public java.util.List<Dependency> getDependencyLinks();
- Type: java.util.List<Dependency>
Gets list of {@link Dependency} links (edges) where this node is the source.
depthRequired
public java.lang.Number getDepth();
- Type: java.lang.Number
Indicates the depth of the node relative to root (0).
idRequired
public java.lang.String getId();
- Type: java.lang.String
Node id, which is only unique within parent scope.
isAssetRequired
public java.lang.Boolean getIsAsset();
- Type: java.lang.Boolean
Indicates if this node is considered a {@link FlagEnum.ASSET}.
isCfnFqnRequired
public java.lang.Boolean getIsCfnFqn();
- Type: java.lang.Boolean
Indicates if node ConstructInfoFqn denotes a aws-cdk-lib.*.Cfn* construct.
isClusterRequired
public java.lang.Boolean getIsCluster();
- Type: java.lang.Boolean
Indicates if this node is considered a {@link FlagEnum.CLUSTER}.
isCustomResourceRequired
public java.lang.Boolean getIsCustomResource();
- Type: java.lang.Boolean
Indicates if node is a Custom Resource.
isExtraneousRequired
public java.lang.Boolean getIsExtraneous();
- Type: java.lang.Boolean
Indicates if this node is considered a {@link FlagEnum.EXTRANEOUS} node or determined to be extraneous: - Clusters that contain no children.
isGraphContainerRequired
public java.lang.Boolean getIsGraphContainer();
- Type: java.lang.Boolean
Indicates if this node is considered a {@link FlagEnum.GRAPH_CONTAINER}.
isLeafRequired
public java.lang.Boolean getIsLeaf();
- Type: java.lang.Boolean
Indicates if this node is a leaf node, which means it does not have children.
isTopLevelRequired
public java.lang.Boolean getIsTopLevel();
- Type: java.lang.Boolean
Indicates if node is direct child of the graph root node.
linksRequired
public java.util.List<Edge> getLinks();
- Type: java.util.List<Edge>
Gets all links (edges) in which this node is the source.
nodeTypeRequired
public NodeTypeEnum getNodeType();
- Type: NodeTypeEnum
Type of node.
pathRequired
public java.lang.String getPath();
- Type: java.lang.String
Path of the node.
referencedByRequired
public java.util.List<Node> getReferencedBy();
- Type: java.util.List<Node>
Get list of Nodes that reference this node.
referenceLinksRequired
public java.util.List<Reference> getReferenceLinks();
- Type: java.util.List<Reference>
Gets list of {@link Reference} links (edges) where this node is the source.
referencesRequired
public java.util.List<Node> getReferences();
- Type: java.util.List<Node>
Get list of Nodes that this node references.
reverseDependencyLinksRequired
public java.util.List<Dependency> getReverseDependencyLinks();
- Type: java.util.List<Dependency>
Gets list of {@link Dependency} links (edges) where this node is the target.
reverseLinksRequired
public java.util.List<Edge> getReverseLinks();
- Type: java.util.List<Edge>
Gets all links (edges) in which this node is the target.
reverseReferenceLinksRequired
public java.util.List<Reference> getReverseReferenceLinks();
- Type: java.util.List<Reference>
Gets list of {@link Reference} links (edges) where this node is the target.
scopesRequired
public java.util.List<Node> getScopes();
- Type: java.util.List<Node>
Gets descending ordered list of ancestors from the root.
siblingsRequired
public java.util.List<Node> getSiblings();
- Type: java.util.List<Node>
Get list of siblings of this node.
cfnPropsOptional
public PlainObject getCfnProps();
- Type: PlainObject
Gets CloudFormation properties for this node.
cfnTypeOptional
public java.lang.String getCfnType();
- Type: java.lang.String
Get the CloudFormation resource type for this node.
constructInfoOptional
public ConstructInfo getConstructInfo();
- Type: ConstructInfo
Synthesized construct information defining jii resolution data.
constructInfoFqnOptional
public java.lang.String getConstructInfoFqn();
- Type: java.lang.String
Synthesized construct information defining jii resolution data.
logicalIdOptional
public java.lang.String getLogicalId();
- Type: java.lang.String
Logical id of the node, which is only unique within containing stack.
parentOptional
public Node getParent();
- Type: Node
Parent node.
Only the root node should not have parent.
rootStackOptional
public StackNode getRootStack();
- Type: StackNode
Get root stack.
stackOptional
public StackNode getStack();
- Type: StackNode
Stack the node is contained in.
Constants
| Name | Type | Description |
|---|---|---|
PATH |
java.lang.String |
Fixed path of the App. |
UUID |
java.lang.String |
Fixed UUID for App node. |
PATHRequired
public java.lang.String getPath();
- Type: java.lang.String
Fixed path of the App.
UUIDRequired
public java.lang.String getUuid();
- Type: java.lang.String
Fixed UUID for App node.
AttributeReference
Attribute type reference edge.
Initializers
import software.aws.pdk.cdk_graph.AttributeReference;
new AttributeReference(IAttributeReferenceProps props);
| Name | Type | Description |
|---|---|---|
props |
IAttributeReferenceProps |
No description. |
propsRequired
- Type: IAttributeReferenceProps
Methods
| Name | Description |
|---|---|
addAttribute |
Add attribute. |
addFlag |
Add flag. |
addMetadata |
Add metadata entry. |
addTag |
Add tag. |
applyData |
Applies data (attributes, metadata, tags, flag) to entity. |
findMetadata |
Retrieves all metadata entries of a given type. |
getAttribute |
Get attribute by key. |
getTag |
Get tag by key. |
hasAttribute |
Indicates if entity has a given attribute defined, and optionally with a specific value. |
hasFlag |
Indicates if entity has a given flag. |
hasMetadata |
Indicates if entity has matching metadata entry. |
hasTag |
Indicates if entity has tag, optionally verifying tag value. |
mutateDestroy |
Destroy the edge. |
setAttribute |
Set attribute. |
setTag |
Set tag. |
isEquivalent |
Indicates if this edge is equivalent to another edge. |
mutateConsume |
Merge an equivalent edge's data into this edge and destroy the other edge. |
mutateDirection |
Change the edge direction. |
mutateSource |
Change the edge source. |
mutateTarget |
Change the edge target. |
toString |
Get string representation of this edge. |
resolveChain |
Resolve reference chain. |
resolveTargets |
Resolve targets by following potential edge chain. |
addAttribute
public void addAttribute(java.lang.String key, java.lang.Object value)
Add attribute.
keyRequired
- Type: java.lang.String
valueRequired
- Type: java.lang.Object
addFlag
public void addFlag(FlagEnum flag)
Add flag.
flagRequired
- Type: FlagEnum
addMetadata
public void addMetadata(java.lang.String metadataType, java.lang.Object data)
Add metadata entry.
metadataTypeRequired
- Type: java.lang.String
dataRequired
- Type: java.lang.Object
addTag
public void addTag(java.lang.String key, java.lang.String value)
Add tag.
keyRequired
- Type: java.lang.String
valueRequired
- Type: java.lang.String
applyData
public void applyData(IBaseEntityDataProps data)
public void applyData(IBaseEntityDataProps data, java.lang.Boolean overwrite)
public void applyData(IBaseEntityDataProps data, java.lang.Boolean overwrite, java.lang.Boolean applyFlags)
Applies data (attributes, metadata, tags, flag) to entity.
Generally used only for mutations such as collapse and consume to retain data.
dataRequired
- Type: IBaseEntityDataProps
The data to apply.
overwriteOptional
- Type: java.lang.Boolean
applyFlagsOptional
- Type: java.lang.Boolean
Indicates if data is overwritten - Indicates if flags should be applied.
findMetadata
public java.util.List<MetadataEntry> findMetadata(java.lang.String metadataType)
Retrieves all metadata entries of a given type.
metadataTypeRequired
- Type: java.lang.String
getAttribute
public java.lang.Object getAttribute(java.lang.String key)
Get attribute by key.
keyRequired
- Type: java.lang.String
getTag
public java.lang.String getTag(java.lang.String key)
Get tag by key.
keyRequired
- Type: java.lang.String
hasAttribute
public java.lang.Boolean hasAttribute(java.lang.String key)
public java.lang.Boolean hasAttribute(java.lang.String key, java.lang.Object value)
Indicates if entity has a given attribute defined, and optionally with a specific value.
keyRequired
- Type: java.lang.String
valueOptional
- Type: java.lang.Object
hasFlag
public java.lang.Boolean hasFlag(FlagEnum flag)
Indicates if entity has a given flag.
flagRequired
- Type: FlagEnum
hasMetadata
public java.lang.Boolean hasMetadata(java.lang.String metadataType, java.lang.Object data)
Indicates if entity has matching metadata entry.
metadataTypeRequired
- Type: java.lang.String
dataRequired
- Type: java.lang.Object
hasTag
public java.lang.Boolean hasTag(java.lang.String key)
public java.lang.Boolean hasTag(java.lang.String key, java.lang.String value)
Indicates if entity has tag, optionally verifying tag value.
keyRequired
- Type: java.lang.String
valueOptional
- Type: java.lang.String
mutateDestroy
public void mutateDestroy()
public void mutateDestroy(java.lang.Boolean _strict)
Destroy the edge.
Remove all references and remove from store.
_strictOptional
- Type: java.lang.Boolean
setAttribute
public void setAttribute(java.lang.String key, java.lang.Object value)
Set attribute.
This will overwrite existing attribute.
keyRequired
- Type: java.lang.String
valueRequired
- Type: java.lang.Object
setTag
public void setTag(java.lang.String key, java.lang.String value)
Set tag.
Will overwrite existing tag.
keyRequired
- Type: java.lang.String
valueRequired
- Type: java.lang.String
isEquivalent
public java.lang.Boolean isEquivalent(Edge edge)
Indicates if this edge is equivalent to another edge.
Edges are considered equivalent if they share same type, source, and target.
edgeRequired
- Type: Edge
mutateConsume
public void mutateConsume(Edge edge)
Merge an equivalent edge's data into this edge and destroy the other edge.
Used during filtering operations to consolidate equivalent edges.
edgeRequired
- Type: Edge
The edge to consume.
mutateDirection
public void mutateDirection(EdgeDirectionEnum direction)
Change the edge direction.
directionRequired
- Type: EdgeDirectionEnum
mutateSource
public void mutateSource(Node node)
Change the edge source.
nodeRequired
- Type: Node
mutateTarget
public void mutateTarget(Node node)
Change the edge target.
nodeRequired
- Type: Node
toString
public java.lang.String toString()
Get string representation of this edge.
resolveChain
public java.util.List<java.lang.Object> resolveChain()
Resolve reference chain.
resolveTargets
public java.util.List<Node> resolveTargets()
Resolve targets by following potential edge chain.
Static Functions
| Name | Description |
|---|---|
findAllInChain |
Find all matching edges based on predicate within an EdgeChain. |
findInChain |
Find first edge matching predicate within an EdgeChain. |
isRef |
Indicates if edge is a Ref based {@link Reference} edge. |
isReference |
Indicates if edge is a {@link Reference}. |
isAtt |
Indicates if edge in an Fn::GetAtt {@link Reference}. |
findAllInChain
import software.aws.pdk.cdk_graph.AttributeReference;
AttributeReference.findAllInChain(java.util.List<java.lang.Object> chain, IEdgePredicate predicate)
Find all matching edges based on predicate within an EdgeChain.
chainRequired
- Type: java.util.List
predicateRequired
- Type: IEdgePredicate
findInChain
import software.aws.pdk.cdk_graph.AttributeReference;
AttributeReference.findInChain(java.util.List<java.lang.Object> chain, IEdgePredicate predicate)
Find first edge matching predicate within an EdgeChain.
chainRequired
- Type: java.util.List
predicateRequired
- Type: IEdgePredicate
isRef
import software.aws.pdk.cdk_graph.AttributeReference;
AttributeReference.isRef(Edge edge)
Indicates if edge is a Ref based {@link Reference} edge.
edgeRequired
- Type: Edge
isReference
import software.aws.pdk.cdk_graph.AttributeReference;
AttributeReference.isReference(Edge edge)
Indicates if edge is a {@link Reference}.
edgeRequired
- Type: Edge
isAtt
import software.aws.pdk.cdk_graph.AttributeReference;
AttributeReference.isAtt(Edge edge)
Indicates if edge in an Fn::GetAtt {@link Reference}.
edgeRequired
- Type: Edge
Properties
| Name | Type | Description |
|---|---|---|
attributes |
java.util.Map |
Get readonly record of all attributes. |
flags |
java.util.List<FlagEnum> |
Get readonly list of all flags. |
isDestroyed |
java.lang.Boolean |
Indicates if the entity has been destroyed (eg: removed from store). |
isMutated |
java.lang.Boolean |
Indicates if the entity has had destructive mutations applied. |
metadata |
java.util.List |
Get readonly list of all metadata entries. |
store |
Store |
Reference to the store. |
tags |
java.util.Map |
Get readonly record of all tags. |
uuid |
java.lang.String |
Universally unique identifier. |
allowDestructiveMutations |
java.lang.Boolean |
Indicates if edge allows destructive mutations. |
direction |
EdgeDirectionEnum |
Indicates the direction in which the edge is directed. |
edgeType |
EdgeTypeEnum |
Type of edge. |
isClosed |
java.lang.Boolean |
Indicates if the Edge's source and target are the same, or were the same when it was created (prior to mutations). |
isCrossStack |
java.lang.Boolean |
Indicates if source and target nodes reside in different root stacks. |
isExtraneous |
java.lang.Boolean |
Indicates if edge is extraneous which is determined by explicitly having EXTRANEOUS flag added and/or being a closed loop (source===target). |
source |
Node |
Edge source is the node that defines the edge (tail). |
target |
Node |
Edge target is the node being referenced by the source (head). |
referenceType |
ReferenceTypeEnum |
Get type of reference. |
value |
java.lang.String |
Get the resolved attribute value. |
attributesRequired
public java.lang.Object getAttributes();
- Type: java.util.Map
PlainObject\ OR java.util.List\ PlainObject\>>
Get readonly record of all attributes.
flagsRequired
public java.util.List<FlagEnum> getFlags();
- Type: java.util.List<FlagEnum>
Get readonly list of all flags.
isDestroyedRequired
public java.lang.Boolean getIsDestroyed();
- Type: java.lang.Boolean
Indicates if the entity has been destroyed (eg: removed from store).
isMutatedRequired
public java.lang.Boolean getIsMutated();
- Type: java.lang.Boolean
Indicates if the entity has had destructive mutations applied.
metadataRequired
public java.util.List<MetadataEntry> getMetadata();
- Type: java.util.List
Get readonly list of all metadata entries.
storeRequired
public Store getStore();
- Type: Store
Reference to the store.
tagsRequired
public java.util.Map<java.lang.String, java.lang.String> getTags();
- Type: java.util.Map
Get readonly record of all tags.
uuidRequired
public java.lang.String getUuid();
- Type: java.lang.String
Universally unique identifier.
allowDestructiveMutationsRequired
public java.lang.Boolean getAllowDestructiveMutations();
- Type: java.lang.Boolean
Indicates if edge allows destructive mutations.
directionRequired
public EdgeDirectionEnum getDirection();
- Type: EdgeDirectionEnum
Indicates the direction in which the edge is directed.
edgeTypeRequired
public EdgeTypeEnum getEdgeType();
- Type: EdgeTypeEnum
Type of edge.
isClosedRequired
public java.lang.Boolean getIsClosed();
- Type: java.lang.Boolean
Indicates if the Edge's source and target are the same, or were the same when it was created (prior to mutations).
To check whether it was originally closed, use hasFlag(FlagEnum.CLOSED_EDGE) instead.
isCrossStackRequired
public java.lang.Boolean getIsCrossStack();
- Type: java.lang.Boolean
Indicates if source and target nodes reside in different root stacks.
isExtraneousRequired
public java.lang.Boolean getIsExtraneous();
- Type: java.lang.Boolean
Indicates if edge is extraneous which is determined by explicitly having EXTRANEOUS flag added and/or being a closed loop (source===target).
sourceRequired
public Node getSource();
- Type: Node
Edge source is the node that defines the edge (tail).
targetRequired
public Node getTarget();
- Type: Node
Edge target is the node being referenced by the source (head).
referenceTypeRequired
public ReferenceTypeEnum getReferenceType();
- Type: ReferenceTypeEnum
Get type of reference.
valueRequired
public java.lang.String getValue();
- Type: java.lang.String
Get the resolved attribute value.
Constants
| Name | Type | Description |
|---|---|---|
ATT_TYPE |
java.lang.String |
Attribute defining the type of reference. |
PREFIX |
java.lang.String |
Edge prefix to denote Fn::GetAtt type reference edge. |
ATT_VALUE |
java.lang.String |
Attribute key for resolved value of attribute reference. |
ATT_TYPERequired
public java.lang.String getAttType();
- Type: java.lang.String
Attribute defining the type of reference.
PREFIXRequired
public java.lang.String getPrefix();
- Type: java.lang.String
Edge prefix to denote Fn::GetAtt type reference edge.
ATT_VALUERequired
public java.lang.String getAttValue();
- Type: java.lang.String
Attribute key for resolved value of attribute reference.
BaseEntity
- Implements: ISerializableEntity
Base class for all store entities (Node and Edges).
Initializers
import software.aws.pdk.cdk_graph.BaseEntity;
new BaseEntity(IBaseEntityProps props);
| Name | Type | Description |
|---|---|---|
props |
IBaseEntityProps |
No description. |
propsRequired
- Type: IBaseEntityProps
Methods
| Name | Description |
|---|---|
addAttribute |
Add attribute. |
addFlag |
Add flag. |
addMetadata |
Add metadata entry. |
addTag |
Add tag. |
applyData |
Applies data (attributes, metadata, tags, flag) to entity. |
findMetadata |
Retrieves all metadata entries of a given type. |
getAttribute |
Get attribute by key. |
getTag |
Get tag by key. |
hasAttribute |
Indicates if entity has a given attribute defined, and optionally with a specific value. |
hasFlag |
Indicates if entity has a given flag. |
hasMetadata |
Indicates if entity has matching metadata entry. |
hasTag |
Indicates if entity has tag, optionally verifying tag value. |
mutateDestroy |
Destroy the entity be removing all references and removing from store. |
setAttribute |
Set attribute. |
setTag |
Set tag. |
addAttribute
public void addAttribute(java.lang.String key, java.lang.Object value)
Add attribute.
keyRequired
- Type: java.lang.String
valueRequired
- Type: java.lang.Object
addFlag
public void addFlag(FlagEnum flag)
Add flag.
flagRequired
- Type: FlagEnum
addMetadata
public void addMetadata(java.lang.String metadataType, java.lang.Object data)
Add metadata entry.
metadataTypeRequired
- Type: java.lang.String
dataRequired
- Type: java.lang.Object
addTag
public void addTag(java.lang.String key, java.lang.String value)
Add tag.
keyRequired
- Type: java.lang.String
valueRequired
- Type: java.lang.String
applyData
public void applyData(IBaseEntityDataProps data)
public void applyData(IBaseEntityDataProps data, java.lang.Boolean overwrite)
public void applyData(IBaseEntityDataProps data, java.lang.Boolean overwrite, java.lang.Boolean applyFlags)
Applies data (attributes, metadata, tags, flag) to entity.
Generally used only for mutations such as collapse and consume to retain data.
dataRequired
- Type: IBaseEntityDataProps
The data to apply.
overwriteOptional
- Type: java.lang.Boolean
applyFlagsOptional
- Type: java.lang.Boolean
Indicates if data is overwritten - Indicates if flags should be applied.
findMetadata
public java.util.List<MetadataEntry> findMetadata(java.lang.String metadataType)
Retrieves all metadata entries of a given type.
metadataTypeRequired
- Type: java.lang.String
getAttribute
public java.lang.Object getAttribute(java.lang.String key)
Get attribute by key.
keyRequired
- Type: java.lang.String
getTag
public java.lang.String getTag(java.lang.String key)
Get tag by key.
keyRequired
- Type: java.lang.String
hasAttribute
public java.lang.Boolean hasAttribute(java.lang.String key)
public java.lang.Boolean hasAttribute(java.lang.String key, java.lang.Object value)
Indicates if entity has a given attribute defined, and optionally with a specific value.
keyRequired
- Type: java.lang.String
valueOptional
- Type: java.lang.Object
hasFlag
public java.lang.Boolean hasFlag(FlagEnum flag)
Indicates if entity has a given flag.
flagRequired
- Type: FlagEnum
hasMetadata
public java.lang.Boolean hasMetadata(java.lang.String metadataType, java.lang.Object data)
Indicates if entity has matching metadata entry.
metadataTypeRequired
- Type: java.lang.String
dataRequired
- Type: java.lang.Object
hasTag
public java.lang.Boolean hasTag(java.lang.String key)
public java.lang.Boolean hasTag(java.lang.String key, java.lang.String value)
Indicates if entity has tag, optionally verifying tag value.
keyRequired
- Type: java.lang.String
valueOptional
- Type: java.lang.String
mutateDestroy
public void mutateDestroy()
public void mutateDestroy(java.lang.Boolean strict)
Destroy the entity be removing all references and removing from store.
strictOptional
- Type: java.lang.Boolean
If strict, then entity must not have any references remaining when attempting to destroy.
setAttribute
public void setAttribute(java.lang.String key, java.lang.Object value)
Set attribute.
This will overwrite existing attribute.
keyRequired
- Type: java.lang.String
valueRequired
- Type: java.lang.Object
setTag
public void setTag(java.lang.String key, java.lang.String value)
Set tag.
Will overwrite existing tag.
keyRequired
- Type: java.lang.String
valueRequired
- Type: java.lang.String
Properties
| Name | Type | Description |
|---|---|---|
attributes |
java.util.Map |
Get readonly record of all attributes. |
flags |
java.util.List<FlagEnum> |
Get readonly list of all flags. |
isDestroyed |
java.lang.Boolean |
Indicates if the entity has been destroyed (eg: removed from store). |
isMutated |
java.lang.Boolean |
Indicates if the entity has had destructive mutations applied. |
metadata |
java.util.List |
Get readonly list of all metadata entries. |
store |
Store |
Reference to the store. |
tags |
java.util.Map |
Get readonly record of all tags. |
uuid |
java.lang.String |
Universally unique identifier. |
attributesRequired
public java.lang.Object getAttributes();
- Type: java.util.Map
PlainObject\ OR java.util.List\ PlainObject\>>
Get readonly record of all attributes.
flagsRequired
public java.util.List<FlagEnum> getFlags();
- Type: java.util.List<FlagEnum>
Get readonly list of all flags.
isDestroyedRequired
public java.lang.Boolean getIsDestroyed();
- Type: java.lang.Boolean
Indicates if the entity has been destroyed (eg: removed from store).
isMutatedRequired
public java.lang.Boolean getIsMutated();
- Type: java.lang.Boolean
Indicates if the entity has had destructive mutations applied.
metadataRequired
public java.util.List<MetadataEntry> getMetadata();
- Type: java.util.List
Get readonly list of all metadata entries.
storeRequired
public Store getStore();
- Type: Store
Reference to the store.
tagsRequired
public java.util.Map<java.lang.String, java.lang.String> getTags();
- Type: java.util.Map
Get readonly record of all tags.
uuidRequired
public java.lang.String getUuid();
- Type: java.lang.String
Universally unique identifier.
CdkGraphContext
CdkGraph context.
Initializers
import software.aws.pdk.cdk_graph.CdkGraphContext;
new CdkGraphContext(Store store, java.lang.String outdir);
| Name | Type | Description |
|---|---|---|
store |
Store |
No description. |
outdir |
java.lang.String |
No description. |
storeRequired
- Type: Store
outdirRequired
- Type: java.lang.String
Methods
| Name | Description |
|---|---|
getArtifact |
Get CdkGraph artifact by id. |
hasArtifactFile |
Indicates if context has an artifact with filename defined. |
logArtifact |
Logs an artifact entry. |
writeArtifact |
Writes artifact data to outdir and logs the entry. |
getArtifact
public CdkGraphArtifact getArtifact(java.lang.String id)
Get CdkGraph artifact by id.
idRequired
- Type: java.lang.String
hasArtifactFile
public java.lang.Boolean hasArtifactFile(java.lang.String filename)
Indicates if context has an artifact with filename defined.
filenameRequired
- Type: java.lang.String
logArtifact
public CdkGraphArtifact logArtifact(CdkGraph OR ICdkGraphPlugin source, java.lang.String id, java.lang.String filepath)
public CdkGraphArtifact logArtifact(CdkGraph OR ICdkGraphPlugin source, java.lang.String id, java.lang.String filepath, java.lang.String description)
Logs an artifact entry.
In general this should not be called directly, as writeArtifact should be utilized
to perform writing and logging artifacts. However some plugins utilize other tools that generate the artifacts,
in which case the plugin would call this method to log the entry.
sourceRequired
- Type: CdkGraph OR ICdkGraphPlugin
The source of the artifact, such as the name of plugin.
idRequired
- Type: java.lang.String
Unique id of the artifact.
filepathRequired
- Type: java.lang.String
Full path where the artifact is stored.
descriptionOptional
- Type: java.lang.String
Description of the artifact.
writeArtifact
public CdkGraphArtifact writeArtifact(CdkGraph OR ICdkGraphPlugin source, java.lang.String id, java.lang.String filename, java.lang.String data)
public CdkGraphArtifact writeArtifact(CdkGraph OR ICdkGraphPlugin source, java.lang.String id, java.lang.String filename, java.lang.String data, java.lang.String description)
Writes artifact data to outdir and logs the entry.
sourceRequired
- Type: CdkGraph OR ICdkGraphPlugin
The source of the artifact, such as the name of plugin.
idRequired
- Type: java.lang.String
Unique id of the artifact.
filenameRequired
- Type: java.lang.String
Relative name of the file.
dataRequired
- Type: java.lang.String
descriptionOptional
- Type: java.lang.String
Description of the artifact.
Properties
| Name | Type | Description |
|---|---|---|
artifacts |
java.util.Map |
Get record of all graph artifacts keyed by artifact id. |
graphJson |
CdkGraphArtifact |
Get CdkGraph core graph.json artifact. |
outdir |
java.lang.String |
No description. |
store |
Store |
No description. |
artifactsRequired
public java.util.Map<java.lang.String, CdkGraphArtifact> getArtifacts();
- Type: java.util.Map
CdkGraphArtifact\>
Get record of all graph artifacts keyed by artifact id.
graphJsonRequired
public CdkGraphArtifact getGraphJson();
- Type: CdkGraphArtifact
Get CdkGraph core graph.json artifact.
outdirRequired
public java.lang.String getOutdir();
- Type: java.lang.String
storeRequired
public Store getStore();
- Type: Store
CfnResourceNode
CfnResourceNode defines an L1 cdk resource.
Initializers
import software.aws.pdk.cdk_graph.CfnResourceNode;
new CfnResourceNode(ICfnResourceNodeProps props);
| Name | Type | Description |
|---|---|---|
props |
ICfnResourceNodeProps |
No description. |
propsRequired
- Type: ICfnResourceNodeProps
Methods
| Name | Description |
|---|---|
addAttribute |
Add attribute. |
addFlag |
Add flag. |
addMetadata |
Add metadata entry. |
addTag |
Add tag. |
applyData |
Applies data (attributes, metadata, tags, flag) to entity. |
findMetadata |
Retrieves all metadata entries of a given type. |
getAttribute |
Get attribute by key. |
getTag |
Get tag by key. |
hasAttribute |
Indicates if entity has a given attribute defined, and optionally with a specific value. |
hasFlag |
Indicates if entity has a given flag. |
hasMetadata |
Indicates if entity has matching metadata entry. |
hasTag |
Indicates if entity has tag, optionally verifying tag value. |
mutateDestroy |
Destroys this node by removing all references and removing this node from the store. |
setAttribute |
Set attribute. |
setTag |
Set tag. |
addChild |
Add child node. |
addLink |
Add link to another node. |
addReverseLink |
Add link from another node. |
doesDependOn |
Indicates if this node depends on another node. |
doesReference |
Indicates if this node references another node. |
find |
Recursively find the nearest sub-node matching predicate. |
findAll |
Return this construct and all of its sub-nodes in the given order. |
findAllLinks |
Return all direct links of this node and that of all sub-nodes. |
findAncestor |
Find nearest ancestor of this node matching given predicate. |
findChild |
Find child with given id. |
findLink |
Find link of this node based on predicate. |
findLinks |
Find all links of this node based on predicate. |
getCfnProp |
Get specific CloudFormation property. |
getChild |
Get child node with given id. |
getLinkChains |
Resolve all link chains. |
getNearestAncestor |
Gets the nearest common ancestor shared between this node and another node. |
isAncestor |
Indicates if a specific node is an ancestor of this node. |
isChild |
Indicates if specific node is a child of this node. |
mutateCollapse |
Collapses all sub-nodes of this node into this node. |
mutateCollapseTo |
Collapses this node into an ancestor. |
mutateCollapseToParent |
Collapses this node into it's parent node. |
mutateHoist |
Hoist this node to an ancestor by removing it from its current parent node and in turn moving it to the ancestor. |
mutateMove |
Move this node into a new parent node. |
mutateRemoveChild |
Remove a child node from this node. |
mutateRemoveLink |
Remove a link from this node. |
mutateRemoveReverseLink |
Remove a link to this node. |
mutateUncluster |
Hoist all children to parent and collapse node to parent. |
toString |
Get string representation of this node. |
isEquivalentFqn |
Evaluates if CfnResourceNode fqn is equivalent to ResourceNode fqn. |
addAttribute
public void addAttribute(java.lang.String key, java.lang.Object value)
Add attribute.
keyRequired
- Type: java.lang.String
valueRequired
- Type: java.lang.Object
addFlag
public void addFlag(FlagEnum flag)
Add flag.
flagRequired
- Type: FlagEnum
addMetadata
public void addMetadata(java.lang.String metadataType, java.lang.Object data)
Add metadata entry.
metadataTypeRequired
- Type: java.lang.String
dataRequired
- Type: java.lang.Object
addTag
public void addTag(java.lang.String key, java.lang.String value)
Add tag.
keyRequired
- Type: java.lang.String
valueRequired
- Type: java.lang.String
applyData
public void applyData(IBaseEntityDataProps data)
public void applyData(IBaseEntityDataProps data, java.lang.Boolean overwrite)
public void applyData(IBaseEntityDataProps data, java.lang.Boolean overwrite, java.lang.Boolean applyFlags)
Applies data (attributes, metadata, tags, flag) to entity.
Generally used only for mutations such as collapse and consume to retain data.
dataRequired
- Type: IBaseEntityDataProps
The data to apply.
overwriteOptional
- Type: java.lang.Boolean
applyFlagsOptional
- Type: java.lang.Boolean
Indicates if data is overwritten - Indicates if flags should be applied.
findMetadata
public java.util.List<MetadataEntry> findMetadata(java.lang.String metadataType)
Retrieves all metadata entries of a given type.
metadataTypeRequired
- Type: java.lang.String
getAttribute
public java.lang.Object getAttribute(java.lang.String key)
Get attribute by key.
keyRequired
- Type: java.lang.String
getTag
public java.lang.String getTag(java.lang.String key)
Get tag by key.
keyRequired
- Type: java.lang.String
hasAttribute
public java.lang.Boolean hasAttribute(java.lang.String key)
public java.lang.Boolean hasAttribute(java.lang.String key, java.lang.Object value)
Indicates if entity has a given attribute defined, and optionally with a specific value.
keyRequired
- Type: java.lang.String
valueOptional
- Type: java.lang.Object
hasFlag
public java.lang.Boolean hasFlag(FlagEnum flag)
Indicates if entity has a given flag.
flagRequired
- Type: FlagEnum
hasMetadata
public java.lang.Boolean hasMetadata(java.lang.String metadataType, java.lang.Object data)
Indicates if entity has matching metadata entry.
metadataTypeRequired
- Type: java.lang.String
dataRequired
- Type: java.lang.Object
hasTag
public java.lang.Boolean hasTag(java.lang.String key)
public java.lang.Boolean hasTag(java.lang.String key, java.lang.String value)
Indicates if entity has tag, optionally verifying tag value.
keyRequired
- Type: java.lang.String
valueOptional
- Type: java.lang.String
mutateDestroy
public void mutateDestroy()
public void mutateDestroy(java.lang.Boolean strict)
Destroys this node by removing all references and removing this node from the store.
strictOptional
- Type: java.lang.Boolean
setAttribute
public void setAttribute(java.lang.String key, java.lang.Object value)
Set attribute.
This will overwrite existing attribute.
keyRequired
- Type: java.lang.String
valueRequired
- Type: java.lang.Object
setTag
public void setTag(java.lang.String key, java.lang.String value)
Set tag.
Will overwrite existing tag.
keyRequired
- Type: java.lang.String
valueRequired
- Type: java.lang.String
addChild
public void addChild(Node node)
Add child node.
nodeRequired
- Type: Node
addLink
public void addLink(Edge edge)
Add link to another node.
edgeRequired
- Type: Edge
addReverseLink
public void addReverseLink(Edge edge)
Add link from another node.
edgeRequired
- Type: Edge
doesDependOn
public java.lang.Boolean doesDependOn(Node node)
Indicates if this node depends on another node.
nodeRequired
- Type: Node
doesReference
public java.lang.Boolean doesReference(Node node)
Indicates if this node references another node.
nodeRequired
- Type: Node
find
public Node find(INodePredicate predicate)
Recursively find the nearest sub-node matching predicate.
predicateRequired
- Type: INodePredicate
findAll
public java.util.List<Node> findAll()
public java.util.List<Node> findAll(IFindNodeOptions options)
Return this construct and all of its sub-nodes in the given order.
Optionally filter nodes based on predicate.
optionsOptional
- Type: IFindNodeOptions
findAllLinks
public java.util.List<Edge> findAllLinks()
public java.util.List<Edge> findAllLinks(IFindEdgeOptions options)
Return all direct links of this node and that of all sub-nodes.
Optionally filter links based on predicate.
optionsOptional
- Type: IFindEdgeOptions
findAncestor
public Node findAncestor(INodePredicate predicate)
public Node findAncestor(INodePredicate predicate, java.lang.Number max)
Find nearest ancestor of this node matching given predicate.
predicateRequired
- Type: INodePredicate
Predicate to match ancestor.
maxOptional
- Type: java.lang.Number
findChild
public Node findChild(java.lang.String id)
Find child with given id.
Similar to find but does not throw error if no child found.
idRequired
- Type: java.lang.String
findLink
public Edge findLink(IEdgePredicate predicate)
public Edge findLink(IEdgePredicate predicate, java.lang.Boolean reverse)
public Edge findLink(IEdgePredicate predicate, java.lang.Boolean reverse, java.lang.Boolean follow)
public Edge findLink(IEdgePredicate predicate, java.lang.Boolean reverse, java.lang.Boolean follow, java.lang.Boolean direct)
Find link of this node based on predicate.
By default this will follow link chains to evaluate the predicate against and return the matching direct link of this node.
predicateRequired
- Type: IEdgePredicate
Edge predicate function to match edge.
reverseOptional
- Type: java.lang.Boolean
Indicates if links are search in reverse order.
followOptional
- Type: java.lang.Boolean
Indicates if link chain is followed.
directOptional
- Type: java.lang.Boolean
Indicates that only direct links should be searched.
findLinks
public java.util.List<Edge> findLinks(IEdgePredicate predicate)
public java.util.List<Edge> findLinks(IEdgePredicate predicate, java.lang.Boolean reverse)
public java.util.List<Edge> findLinks(IEdgePredicate predicate, java.lang.Boolean reverse, java.lang.Boolean follow)
public java.util.List<Edge> findLinks(IEdgePredicate predicate, java.lang.Boolean reverse, java.lang.Boolean follow, java.lang.Boolean direct)
Find all links of this node based on predicate.
By default this will follow link chains to evaluate the predicate against and return the matching direct links of this node.
predicateRequired
- Type: IEdgePredicate
Edge predicate function to match edge.
reverseOptional
- Type: java.lang.Boolean
Indicates if links are search in reverse order.
followOptional
- Type: java.lang.Boolean
Indicates if link chain is followed.
directOptional
- Type: java.lang.Boolean
Indicates that only direct links should be searched.
getCfnProp
public java.lang.String OR java.lang.Number OR java.lang.Boolean OR PlainObject OR java.util.List<java.lang.String OR java.lang.Number OR java.lang.Boolean OR PlainObject> getCfnProp(java.lang.String key)
Get specific CloudFormation property.
keyRequired
- Type: java.lang.String
getChild
public Node getChild(java.lang.String id)
Get child node with given id.
idRequired
- Type: java.lang.String
getLinkChains
public java.util.List<java.util.List<java.lang.Object>> getLinkChains()
public java.util.List<java.util.List<java.lang.Object>> getLinkChains(java.lang.Boolean reverse)
Resolve all link chains.
reverseOptional
- Type: java.lang.Boolean
getNearestAncestor
public Node getNearestAncestor(Node node)
Gets the nearest common ancestor shared between this node and another node.
nodeRequired
- Type: Node
isAncestor
public java.lang.Boolean isAncestor(Node ancestor)
Indicates if a specific node is an ancestor of this node.
ancestorRequired
- Type: Node
isChild
public java.lang.Boolean isChild(Node node)
Indicates if specific node is a child of this node.
nodeRequired
- Type: Node
mutateCollapse
public void mutateCollapse()
Collapses all sub-nodes of this node into this node.
mutateCollapseTo
public Node mutateCollapseTo(Node ancestor)
Collapses this node into an ancestor.
ancestorRequired
- Type: Node
mutateCollapseToParent
public Node mutateCollapseToParent()
Collapses this node into it's parent node.
mutateHoist
public void mutateHoist(Node newParent)
Hoist this node to an ancestor by removing it from its current parent node and in turn moving it to the ancestor.
newParentRequired
- Type: Node
mutateMove
public void mutateMove(Node newParent)
Move this node into a new parent node.
newParentRequired
- Type: Node
The parent to move this node to.
mutateRemoveChild
public java.lang.Boolean mutateRemoveChild(Node node)
Remove a child node from this node.
nodeRequired
- Type: Node
mutateRemoveLink
public java.lang.Boolean mutateRemoveLink(Edge link)
Remove a link from this node.
linkRequired
- Type: Edge
mutateRemoveReverseLink
public java.lang.Boolean mutateRemoveReverseLink(Edge link)
Remove a link to this node.
linkRequired
- Type: Edge
mutateUncluster
public void mutateUncluster()
Hoist all children to parent and collapse node to parent.
toString
public java.lang.String toString()
Get string representation of this node.
isEquivalentFqn
public java.lang.Boolean isEquivalentFqn(ResourceNode resource)
Evaluates if CfnResourceNode fqn is equivalent to ResourceNode fqn.
Example
// Example automatically generated from non-compiling source. May contain errors.
"aws-cdk-lib.aws_lambda.Function";"aws-cdk-lib.aws_lambda.CfnFunction";
resourceRequired
- Type: ResourceNode
{@link Graph.ResourceNode } to compare.
Static Functions
| Name | Description |
|---|---|
isCfnResourceNode |
Indicates if a node is a {@link CfnResourceNode}. |
isCfnResourceNode
import software.aws.pdk.cdk_graph.CfnResourceNode;
CfnResourceNode.isCfnResourceNode(Node node)
Indicates if a node is a {@link CfnResourceNode}.
nodeRequired
- Type: Node
Properties
| Name | Type | Description |
|---|---|---|
attributes |
java.util.Map |
Get readonly record of all attributes. |
flags |
java.util.List<FlagEnum> |
Get readonly list of all flags. |
isDestroyed |
java.lang.Boolean |
Indicates if the entity has been destroyed (eg: removed from store). |
isMutated |
java.lang.Boolean |
Indicates if the entity has had destructive mutations applied. |
metadata |
java.util.List |
Get readonly list of all metadata entries. |
store |
Store |
Reference to the store. |
tags |
java.util.Map |
Get readonly record of all tags. |
uuid |
java.lang.String |
Universally unique identifier. |
allowDestructiveMutations |
java.lang.Boolean |
Indicates if this node allows destructive mutations. |
children |
java.util.List<Node> |
Get all direct child nodes. |
dependedOnBy |
java.util.List<Node> |
Get list of Nodes that depend on this node. |
dependencies |
java.util.List<Node> |
Get list of Nodes that this node depends on. |
dependencyLinks |
java.util.List<Dependency> |
Gets list of {@link Dependency} links (edges) where this node is the source. |
depth |
java.lang.Number |
Indicates the depth of the node relative to root (0). |
id |
java.lang.String |
Node id, which is only unique within parent scope. |
isAsset |
java.lang.Boolean |
Indicates if this node is considered a {@link FlagEnum.ASSET}. |
isCfnFqn |
java.lang.Boolean |
Indicates if node ConstructInfoFqn denotes a aws-cdk-lib.*.Cfn* construct. |
isCluster |
java.lang.Boolean |
Indicates if this node is considered a {@link FlagEnum.CLUSTER}. |
isCustomResource |
java.lang.Boolean |
Indicates if node is a Custom Resource. |
isExtraneous |
java.lang.Boolean |
Indicates if this node is considered a {@link FlagEnum.EXTRANEOUS} node or determined to be extraneous: - Clusters that contain no children. |
isGraphContainer |
java.lang.Boolean |
Indicates if this node is considered a {@link FlagEnum.GRAPH_CONTAINER}. |
isLeaf |
java.lang.Boolean |
Indicates if this node is a leaf node, which means it does not have children. |
isTopLevel |
java.lang.Boolean |
Indicates if node is direct child of the graph root node. |
links |
java.util.List<Edge> |
Gets all links (edges) in which this node is the source. |
nodeType |
NodeTypeEnum |
Type of node. |
path |
java.lang.String |
Path of the node. |
referencedBy |
java.util.List<Node> |
Get list of Nodes that reference this node. |
referenceLinks |
java.util.List<Reference> |
Gets list of {@link Reference} links (edges) where this node is the source. |
references |
java.util.List<Node> |
Get list of Nodes that this node references. |
reverseDependencyLinks |
java.util.List<Dependency> |
Gets list of {@link Dependency} links (edges) where this node is the target. |
reverseLinks |
java.util.List<Edge> |
Gets all links (edges) in which this node is the target. |
reverseReferenceLinks |
java.util.List<Reference> |
Gets list of {@link Reference} links (edges) where this node is the target. |
scopes |
java.util.List<Node> |
Gets descending ordered list of ancestors from the root. |
siblings |
java.util.List<Node> |
Get list of siblings of this node. |
cfnProps |
PlainObject |
Gets CloudFormation properties for this node. |
cfnType |
java.lang.String |
Get the CloudFormation resource type for this node. |
constructInfo |
ConstructInfo |
Synthesized construct information defining jii resolution data. |
constructInfoFqn |
java.lang.String |
Synthesized construct information defining jii resolution data. |
logicalId |
java.lang.String |
Logical id of the node, which is only unique within containing stack. |
parent |
Node |
Parent node. |
rootStack |
StackNode |
Get root stack. |
stack |
StackNode |
Stack the node is contained in. |
isImport |
java.lang.Boolean |
Indicates if this CfnResource is imported (eg: s3.Bucket.fromBucketArn). |
resource |
ResourceNode |
Reference to the L2 Resource that wraps this L1 CfnResource if it is wrapped. |
attributesRequired
public java.lang.Object getAttributes();
- Type: java.util.Map
PlainObject\ OR java.util.List\ PlainObject\>>
Get readonly record of all attributes.
flagsRequired
public java.util.List<FlagEnum> getFlags();
- Type: java.util.List<FlagEnum>
Get readonly list of all flags.
isDestroyedRequired
public java.lang.Boolean getIsDestroyed();
- Type: java.lang.Boolean
Indicates if the entity has been destroyed (eg: removed from store).
isMutatedRequired
public java.lang.Boolean getIsMutated();
- Type: java.lang.Boolean
Indicates if the entity has had destructive mutations applied.
metadataRequired
public java.util.List<MetadataEntry> getMetadata();
- Type: java.util.List
Get readonly list of all metadata entries.
storeRequired
public Store getStore();
- Type: Store
Reference to the store.
tagsRequired
public java.util.Map<java.lang.String, java.lang.String> getTags();
- Type: java.util.Map
Get readonly record of all tags.
uuidRequired
public java.lang.String getUuid();
- Type: java.lang.String
Universally unique identifier.
allowDestructiveMutationsRequired
public java.lang.Boolean getAllowDestructiveMutations();
- Type: java.lang.Boolean
Indicates if this node allows destructive mutations.
childrenRequired
public java.util.List<Node> getChildren();
- Type: java.util.List<Node>
Get all direct child nodes.
dependedOnByRequired
public java.util.List<Node> getDependedOnBy();
- Type: java.util.List<Node>
Get list of Nodes that depend on this node.
dependenciesRequired
public java.util.List<Node> getDependencies();
- Type: java.util.List<Node>
Get list of Nodes that this node depends on.
dependencyLinksRequired
public java.util.List<Dependency> getDependencyLinks();
- Type: java.util.List<Dependency>
Gets list of {@link Dependency} links (edges) where this node is the source.
depthRequired
public java.lang.Number getDepth();
- Type: java.lang.Number
Indicates the depth of the node relative to root (0).
idRequired
public java.lang.String getId();
- Type: java.lang.String
Node id, which is only unique within parent scope.
isAssetRequired
public java.lang.Boolean getIsAsset();
- Type: java.lang.Boolean
Indicates if this node is considered a {@link FlagEnum.ASSET}.
isCfnFqnRequired
public java.lang.Boolean getIsCfnFqn();
- Type: java.lang.Boolean
Indicates if node ConstructInfoFqn denotes a aws-cdk-lib.*.Cfn* construct.
isClusterRequired
public java.lang.Boolean getIsCluster();
- Type: java.lang.Boolean
Indicates if this node is considered a {@link FlagEnum.CLUSTER}.
isCustomResourceRequired
public java.lang.Boolean getIsCustomResource();
- Type: java.lang.Boolean
Indicates if node is a Custom Resource.
isExtraneousRequired
public java.lang.Boolean getIsExtraneous();
- Type: java.lang.Boolean
Indicates if this node is considered a {@link FlagEnum.EXTRANEOUS} node or determined to be extraneous: - Clusters that contain no children.
isGraphContainerRequired
public java.lang.Boolean getIsGraphContainer();
- Type: java.lang.Boolean
Indicates if this node is considered a {@link FlagEnum.GRAPH_CONTAINER}.
isLeafRequired
public java.lang.Boolean getIsLeaf();
- Type: java.lang.Boolean
Indicates if this node is a leaf node, which means it does not have children.
isTopLevelRequired
public java.lang.Boolean getIsTopLevel();
- Type: java.lang.Boolean
Indicates if node is direct child of the graph root node.
linksRequired
public java.util.List<Edge> getLinks();
- Type: java.util.List<Edge>
Gets all links (edges) in which this node is the source.
nodeTypeRequired
public NodeTypeEnum getNodeType();
- Type: NodeTypeEnum
Type of node.
pathRequired
public java.lang.String getPath();
- Type: java.lang.String
Path of the node.
referencedByRequired
public java.util.List<Node> getReferencedBy();
- Type: java.util.List<Node>
Get list of Nodes that reference this node.
referenceLinksRequired
public java.util.List<Reference> getReferenceLinks();
- Type: java.util.List<Reference>
Gets list of {@link Reference} links (edges) where this node is the source.
referencesRequired
public java.util.List<Node> getReferences();
- Type: java.util.List<Node>
Get list of Nodes that this node references.
reverseDependencyLinksRequired
public java.util.List<Dependency> getReverseDependencyLinks();
- Type: java.util.List<Dependency>
Gets list of {@link Dependency} links (edges) where this node is the target.
reverseLinksRequired
public java.util.List<Edge> getReverseLinks();
- Type: java.util.List<Edge>
Gets all links (edges) in which this node is the target.
reverseReferenceLinksRequired
public java.util.List<Reference> getReverseReferenceLinks();
- Type: java.util.List<Reference>
Gets list of {@link Reference} links (edges) where this node is the target.
scopesRequired
public java.util.List<Node> getScopes();
- Type: java.util.List<Node>
Gets descending ordered list of ancestors from the root.
siblingsRequired
public java.util.List<Node> getSiblings();
- Type: java.util.List<Node>
Get list of siblings of this node.
cfnPropsOptional
public PlainObject getCfnProps();
- Type: PlainObject
Gets CloudFormation properties for this node.
cfnTypeOptional
public java.lang.String getCfnType();
- Type: java.lang.String
Get the CloudFormation resource type for this node.
constructInfoOptional
public ConstructInfo getConstructInfo();
- Type: ConstructInfo
Synthesized construct information defining jii resolution data.
constructInfoFqnOptional
public java.lang.String getConstructInfoFqn();
- Type: java.lang.String
Synthesized construct information defining jii resolution data.
logicalIdOptional
public java.lang.String getLogicalId();
- Type: java.lang.String
Logical id of the node, which is only unique within containing stack.
parentOptional
public Node getParent();
- Type: Node
Parent node.
Only the root node should not have parent.
rootStackOptional
public StackNode getRootStack();
- Type: StackNode
Get root stack.
stackOptional
public StackNode getStack();
- Type: StackNode
Stack the node is contained in.
isImportRequired
public java.lang.Boolean getIsImport();
- Type: java.lang.Boolean
Indicates if this CfnResource is imported (eg: s3.Bucket.fromBucketArn).
resourceOptional
public ResourceNode getResource();
- Type: ResourceNode
Reference to the L2 Resource that wraps this L1 CfnResource if it is wrapped.
Constants
| Name | Type | Description |
|---|---|---|
ATT_IMPORT_ARN_TOKEN |
java.lang.String |
Normalized CfnReference attribute. |
ATT_IMPORT_ARN_TOKENRequired
public java.lang.String getAttImportArnToken();
- Type: java.lang.String
Normalized CfnReference attribute.
Dependency
Dependency edge class defines CloudFormation dependency between resources.
Initializers
import software.aws.pdk.cdk_graph.Dependency;
new Dependency(ITypedEdgeProps props);
| Name | Type | Description |
|---|---|---|
props |
ITypedEdgeProps |
No description. |
propsRequired
- Type: ITypedEdgeProps
Methods
| Name | Description |
|---|---|
addAttribute |
Add attribute. |
addFlag |
Add flag. |
addMetadata |
Add metadata entry. |
addTag |
Add tag. |
applyData |
Applies data (attributes, metadata, tags, flag) to entity. |
findMetadata |
Retrieves all metadata entries of a given type. |
getAttribute |
Get attribute by key. |
getTag |
Get tag by key. |
hasAttribute |
Indicates if entity has a given attribute defined, and optionally with a specific value. |
hasFlag |
Indicates if entity has a given flag. |
hasMetadata |
Indicates if entity has matching metadata entry. |
hasTag |
Indicates if entity has tag, optionally verifying tag value. |
mutateDestroy |
Destroy the edge. |
setAttribute |
Set attribute. |
setTag |
Set tag. |
isEquivalent |
Indicates if this edge is equivalent to another edge. |
mutateConsume |
Merge an equivalent edge's data into this edge and destroy the other edge. |
mutateDirection |
Change the edge direction. |
mutateSource |
Change the edge source. |
mutateTarget |
Change the edge target. |
toString |
Get string representation of this edge. |
addAttribute
public void addAttribute(java.lang.String key, java.lang.Object value)
Add attribute.
keyRequired
- Type: java.lang.String
valueRequired
- Type: java.lang.Object
addFlag
public void addFlag(FlagEnum flag)
Add flag.
flagRequired
- Type: FlagEnum
addMetadata
public void addMetadata(java.lang.String metadataType, java.lang.Object data)
Add metadata entry.
metadataTypeRequired
- Type: java.lang.String
dataRequired
- Type: java.lang.Object
addTag
public void addTag(java.lang.String key, java.lang.String value)
Add tag.
keyRequired
- Type: java.lang.String
valueRequired
- Type: java.lang.String
applyData
public void applyData(IBaseEntityDataProps data)
public void applyData(IBaseEntityDataProps data, java.lang.Boolean overwrite)
public void applyData(IBaseEntityDataProps data, java.lang.Boolean overwrite, java.lang.Boolean applyFlags)
Applies data (attributes, metadata, tags, flag) to entity.
Generally used only for mutations such as collapse and consume to retain data.
dataRequired
- Type: IBaseEntityDataProps
The data to apply.
overwriteOptional
- Type: java.lang.Boolean
applyFlagsOptional
- Type: java.lang.Boolean
Indicates if data is overwritten - Indicates if flags should be applied.
findMetadata
public java.util.List<MetadataEntry> findMetadata(java.lang.String metadataType)
Retrieves all metadata entries of a given type.
metadataTypeRequired
- Type: java.lang.String
getAttribute
public java.lang.Object getAttribute(java.lang.String key)
Get attribute by key.
keyRequired
- Type: java.lang.String
getTag
public java.lang.String getTag(java.lang.String key)
Get tag by key.
keyRequired
- Type: java.lang.String
hasAttribute
public java.lang.Boolean hasAttribute(java.lang.String key)
public java.lang.Boolean hasAttribute(java.lang.String key, java.lang.Object value)
Indicates if entity has a given attribute defined, and optionally with a specific value.
keyRequired
- Type: java.lang.String
valueOptional
- Type: java.lang.Object
hasFlag
public java.lang.Boolean hasFlag(FlagEnum flag)
Indicates if entity has a given flag.
flagRequired
- Type: FlagEnum
hasMetadata
public java.lang.Boolean hasMetadata(java.lang.String metadataType, java.lang.Object data)
Indicates if entity has matching metadata entry.
metadataTypeRequired
- Type: java.lang.String
dataRequired
- Type: java.lang.Object
hasTag
public java.lang.Boolean hasTag(java.lang.String key)
public java.lang.Boolean hasTag(java.lang.String key, java.lang.String value)
Indicates if entity has tag, optionally verifying tag value.
keyRequired
- Type: java.lang.String
valueOptional
- Type: java.lang.String
mutateDestroy
public void mutateDestroy()
public void mutateDestroy(java.lang.Boolean _strict)
Destroy the edge.
Remove all references and remove from store.
_strictOptional
- Type: java.lang.Boolean
setAttribute
public void setAttribute(java.lang.String key, java.lang.Object value)
Set attribute.
This will overwrite existing attribute.
keyRequired
- Type: java.lang.String
valueRequired
- Type: java.lang.Object
setTag
public void setTag(java.lang.String key, java.lang.String value)
Set tag.
Will overwrite existing tag.
keyRequired
- Type: java.lang.String
valueRequired
- Type: java.lang.String
isEquivalent
public java.lang.Boolean isEquivalent(Edge edge)
Indicates if this edge is equivalent to another edge.
Edges are considered equivalent if they share same type, source, and target.
edgeRequired
- Type: Edge
mutateConsume
public void mutateConsume(Edge edge)
Merge an equivalent edge's data into this edge and destroy the other edge.
Used during filtering operations to consolidate equivalent edges.
edgeRequired
- Type: Edge
The edge to consume.
mutateDirection
public void mutateDirection(EdgeDirectionEnum direction)
Change the edge direction.
directionRequired
- Type: EdgeDirectionEnum
mutateSource
public void mutateSource(Node node)
Change the edge source.
nodeRequired
- Type: Node
mutateTarget
public void mutateTarget(Node node)
Change the edge target.
nodeRequired
- Type: Node
toString
public java.lang.String toString()
Get string representation of this edge.
Static Functions
| Name | Description |
|---|---|
findAllInChain |
Find all matching edges based on predicate within an EdgeChain. |
findInChain |
Find first edge matching predicate within an EdgeChain. |
isDependency |
Indicates if given edge is a {@link Dependency} edge. |
findAllInChain
import software.aws.pdk.cdk_graph.Dependency;
Dependency.findAllInChain(java.util.List<java.lang.Object> chain, IEdgePredicate predicate)
Find all matching edges based on predicate within an EdgeChain.
chainRequired
- Type: java.util.List
predicateRequired
- Type: IEdgePredicate
findInChain
import software.aws.pdk.cdk_graph.Dependency;
Dependency.findInChain(java.util.List<java.lang.Object> chain, IEdgePredicate predicate)
Find first edge matching predicate within an EdgeChain.
chainRequired
- Type: java.util.List
predicateRequired
- Type: IEdgePredicate
isDependency
import software.aws.pdk.cdk_graph.Dependency;
Dependency.isDependency(Edge edge)
Indicates if given edge is a {@link Dependency} edge.
edgeRequired
- Type: Edge
Properties
| Name | Type | Description |
|---|---|---|
attributes |
java.util.Map |
Get readonly record of all attributes. |
flags |
java.util.List<FlagEnum> |
Get readonly list of all flags. |
isDestroyed |
java.lang.Boolean |
Indicates if the entity has been destroyed (eg: removed from store). |
isMutated |
java.lang.Boolean |
Indicates if the entity has had destructive mutations applied. |
metadata |
java.util.List |
Get readonly list of all metadata entries. |
store |
Store |
Reference to the store. |
tags |
java.util.Map |
Get readonly record of all tags. |
uuid |
java.lang.String |
Universally unique identifier. |
allowDestructiveMutations |
java.lang.Boolean |
Indicates if edge allows destructive mutations. |
direction |
EdgeDirectionEnum |
Indicates the direction in which the edge is directed. |
edgeType |
EdgeTypeEnum |
Type of edge. |
isClosed |
java.lang.Boolean |
Indicates if the Edge's source and target are the same, or were the same when it was created (prior to mutations). |
isCrossStack |
java.lang.Boolean |
Indicates if source and target nodes reside in different root stacks. |
isExtraneous |
java.lang.Boolean |
Indicates if edge is extraneous which is determined by explicitly having EXTRANEOUS flag added and/or being a closed loop (source===target). |
source |
Node |
Edge source is the node that defines the edge (tail). |
target |
Node |
Edge target is the node being referenced by the source (head). |
attributesRequired
public java.lang.Object getAttributes();
- Type: java.util.Map
PlainObject\ OR java.util.List\ PlainObject\>>
Get readonly record of all attributes.
flagsRequired
public java.util.List<FlagEnum> getFlags();
- Type: java.util.List<FlagEnum>
Get readonly list of all flags.
isDestroyedRequired
public java.lang.Boolean getIsDestroyed();
- Type: java.lang.Boolean
Indicates if the entity has been destroyed (eg: removed from store).
isMutatedRequired
public java.lang.Boolean getIsMutated();
- Type: java.lang.Boolean
Indicates if the entity has had destructive mutations applied.
metadataRequired
public java.util.List<MetadataEntry> getMetadata();
- Type: java.util.List
Get readonly list of all metadata entries.
storeRequired
public Store getStore();
- Type: Store
Reference to the store.
tagsRequired
public java.util.Map<java.lang.String, java.lang.String> getTags();
- Type: java.util.Map
Get readonly record of all tags.
uuidRequired
public java.lang.String getUuid();
- Type: java.lang.String
Universally unique identifier.
allowDestructiveMutationsRequired
public java.lang.Boolean getAllowDestructiveMutations();
- Type: java.lang.Boolean
Indicates if edge allows destructive mutations.
directionRequired
public EdgeDirectionEnum getDirection();
- Type: EdgeDirectionEnum
Indicates the direction in which the edge is directed.
edgeTypeRequired
public EdgeTypeEnum getEdgeType();
- Type: EdgeTypeEnum
Type of edge.
isClosedRequired
public java.lang.Boolean getIsClosed();
- Type: java.lang.Boolean
Indicates if the Edge's source and target are the same, or were the same when it was created (prior to mutations).
To check whether it was originally closed, use hasFlag(FlagEnum.CLOSED_EDGE) instead.
isCrossStackRequired
public java.lang.Boolean getIsCrossStack();
- Type: java.lang.Boolean
Indicates if source and target nodes reside in different root stacks.
isExtraneousRequired
public java.lang.Boolean getIsExtraneous();
- Type: java.lang.Boolean
Indicates if edge is extraneous which is determined by explicitly having EXTRANEOUS flag added and/or being a closed loop (source===target).
sourceRequired
public Node getSource();
- Type: Node
Edge source is the node that defines the edge (tail).
targetRequired
public Node getTarget();
- Type: Node
Edge target is the node being referenced by the source (head).
Constants
| Name | Type | Description |
|---|---|---|
PREFIX |
java.lang.String |
Edge prefix to denote dependency edge. |
PREFIXRequired
public java.lang.String getPrefix();
- Type: java.lang.String
Edge prefix to denote dependency edge.
Edge
- Implements: ISerializableEdge
Edge class defines a link (relationship) between nodes, as in standard graph theory.
Initializers
import software.aws.pdk.cdk_graph.Edge;
new Edge(IEdgeProps props);
| Name | Type | Description |
|---|---|---|
props |
IEdgeProps |
No description. |
propsRequired
- Type: IEdgeProps
Methods
| Name | Description |
|---|---|
addAttribute |
Add attribute. |
addFlag |
Add flag. |
addMetadata |
Add metadata entry. |
addTag |
Add tag. |
applyData |
Applies data (attributes, metadata, tags, flag) to entity. |
findMetadata |
Retrieves all metadata entries of a given type. |
getAttribute |
Get attribute by key. |
getTag |
Get tag by key. |
hasAttribute |
Indicates if entity has a given attribute defined, and optionally with a specific value. |
hasFlag |
Indicates if entity has a given flag. |
hasMetadata |
Indicates if entity has matching metadata entry. |
hasTag |
Indicates if entity has tag, optionally verifying tag value. |
mutateDestroy |
Destroy the edge. |
setAttribute |
Set attribute. |
setTag |
Set tag. |
isEquivalent |
Indicates if this edge is equivalent to another edge. |
mutateConsume |
Merge an equivalent edge's data into this edge and destroy the other edge. |
mutateDirection |
Change the edge direction. |
mutateSource |
Change the edge source. |
mutateTarget |
Change the edge target. |
toString |
Get string representation of this edge. |
addAttribute
public void addAttribute(java.lang.String key, java.lang.Object value)
Add attribute.
keyRequired
- Type: java.lang.String
valueRequired
- Type: java.lang.Object
addFlag
public void addFlag(FlagEnum flag)
Add flag.
flagRequired
- Type: FlagEnum
addMetadata
public void addMetadata(java.lang.String metadataType, java.lang.Object data)
Add metadata entry.
metadataTypeRequired
- Type: java.lang.String
dataRequired
- Type: java.lang.Object
addTag
public void addTag(java.lang.String key, java.lang.String value)
Add tag.
keyRequired
- Type: java.lang.String
valueRequired
- Type: java.lang.String
applyData
public void applyData(IBaseEntityDataProps data)
public void applyData(IBaseEntityDataProps data, java.lang.Boolean overwrite)
public void applyData(IBaseEntityDataProps data, java.lang.Boolean overwrite, java.lang.Boolean applyFlags)
Applies data (attributes, metadata, tags, flag) to entity.
Generally used only for mutations such as collapse and consume to retain data.
dataRequired
- Type: IBaseEntityDataProps
The data to apply.
overwriteOptional
- Type: java.lang.Boolean
applyFlagsOptional
- Type: java.lang.Boolean
Indicates if data is overwritten - Indicates if flags should be applied.
findMetadata
public java.util.List<MetadataEntry> findMetadata(java.lang.String metadataType)
Retrieves all metadata entries of a given type.
metadataTypeRequired
- Type: java.lang.String
getAttribute
public java.lang.Object getAttribute(java.lang.String key)
Get attribute by key.
keyRequired
- Type: java.lang.String
getTag
public java.lang.String getTag(java.lang.String key)
Get tag by key.
keyRequired
- Type: java.lang.String
hasAttribute
public java.lang.Boolean hasAttribute(java.lang.String key)
public java.lang.Boolean hasAttribute(java.lang.String key, java.lang.Object value)
Indicates if entity has a given attribute defined, and optionally with a specific value.
keyRequired
- Type: java.lang.String
valueOptional
- Type: java.lang.Object
hasFlag
public java.lang.Boolean hasFlag(FlagEnum flag)
Indicates if entity has a given flag.
flagRequired
- Type: FlagEnum
hasMetadata
public java.lang.Boolean hasMetadata(java.lang.String metadataType, java.lang.Object data)
Indicates if entity has matching metadata entry.
metadataTypeRequired
- Type: java.lang.String
dataRequired
- Type: java.lang.Object
hasTag
public java.lang.Boolean hasTag(java.lang.String key)
public java.lang.Boolean hasTag(java.lang.String key, java.lang.String value)
Indicates if entity has tag, optionally verifying tag value.
keyRequired
- Type: java.lang.String
valueOptional
- Type: java.lang.String
mutateDestroy
public void mutateDestroy()
public void mutateDestroy(java.lang.Boolean _strict)
Destroy the edge.
Remove all references and remove from store.
_strictOptional
- Type: java.lang.Boolean
setAttribute
public void setAttribute(java.lang.String key, java.lang.Object value)
Set attribute.
This will overwrite existing attribute.
keyRequired
- Type: java.lang.String
valueRequired
- Type: java.lang.Object
setTag
public void setTag(java.lang.String key, java.lang.String value)
Set tag.
Will overwrite existing tag.
keyRequired
- Type: java.lang.String
valueRequired
- Type: java.lang.String
isEquivalent
public java.lang.Boolean isEquivalent(Edge edge)
Indicates if this edge is equivalent to another edge.
Edges are considered equivalent if they share same type, source, and target.
edgeRequired
- Type: Edge
mutateConsume
public void mutateConsume(Edge edge)
Merge an equivalent edge's data into this edge and destroy the other edge.
Used during filtering operations to consolidate equivalent edges.
edgeRequired
- Type: Edge
The edge to consume.
mutateDirection
public void mutateDirection(EdgeDirectionEnum direction)
Change the edge direction.
directionRequired
- Type: EdgeDirectionEnum
mutateSource
public void mutateSource(Node node)
Change the edge source.
nodeRequired
- Type: Node
mutateTarget
public void mutateTarget(Node node)
Change the edge target.
nodeRequired
- Type: Node
toString
public java.lang.String toString()
Get string representation of this edge.
Static Functions
| Name | Description |
|---|---|
findAllInChain |
Find all matching edges based on predicate within an EdgeChain. |
findInChain |
Find first edge matching predicate within an EdgeChain. |
findAllInChain
import software.aws.pdk.cdk_graph.Edge;
Edge.findAllInChain(java.util.List<java.lang.Object> chain, IEdgePredicate predicate)
Find all matching edges based on predicate within an EdgeChain.
chainRequired
- Type: java.util.List
predicateRequired
- Type: IEdgePredicate
findInChain
import software.aws.pdk.cdk_graph.Edge;
Edge.findInChain(java.util.List<java.lang.Object> chain, IEdgePredicate predicate)
Find first edge matching predicate within an EdgeChain.
chainRequired
- Type: java.util.List
predicateRequired
- Type: IEdgePredicate
Properties
| Name | Type | Description |
|---|---|---|
attributes |
java.util.Map |
Get readonly record of all attributes. |
flags |
java.util.List<FlagEnum> |
Get readonly list of all flags. |
isDestroyed |
java.lang.Boolean |
Indicates if the entity has been destroyed (eg: removed from store). |
isMutated |
java.lang.Boolean |
Indicates if the entity has had destructive mutations applied. |
metadata |
java.util.List |
Get readonly list of all metadata entries. |
store |
Store |
Reference to the store. |
tags |
java.util.Map |
Get readonly record of all tags. |
uuid |
java.lang.String |
Universally unique identifier. |
allowDestructiveMutations |
java.lang.Boolean |
Indicates if edge allows destructive mutations. |
direction |
EdgeDirectionEnum |
Indicates the direction in which the edge is directed. |
edgeType |
EdgeTypeEnum |
Type of edge. |
isClosed |
java.lang.Boolean |
Indicates if the Edge's source and target are the same, or were the same when it was created (prior to mutations). |
isCrossStack |
java.lang.Boolean |
Indicates if source and target nodes reside in different root stacks. |
isExtraneous |
java.lang.Boolean |
Indicates if edge is extraneous which is determined by explicitly having EXTRANEOUS flag added and/or being a closed loop (source===target). |
source |
Node |
Edge source is the node that defines the edge (tail). |
target |
Node |
Edge target is the node being referenced by the source (head). |
attributesRequired
public java.lang.Object getAttributes();
- Type: java.util.Map
PlainObject\ OR java.util.List\ PlainObject\>>
Get readonly record of all attributes.
flagsRequired
public java.util.List<FlagEnum> getFlags();
- Type: java.util.List<FlagEnum>
Get readonly list of all flags.
isDestroyedRequired
public java.lang.Boolean getIsDestroyed();
- Type: java.lang.Boolean
Indicates if the entity has been destroyed (eg: removed from store).
isMutatedRequired
public java.lang.Boolean getIsMutated();
- Type: java.lang.Boolean
Indicates if the entity has had destructive mutations applied.
metadataRequired
public java.util.List<MetadataEntry> getMetadata();
- Type: java.util.List
Get readonly list of all metadata entries.
storeRequired
public Store getStore();
- Type: Store
Reference to the store.
tagsRequired
public java.util.Map<java.lang.String, java.lang.String> getTags();
- Type: java.util.Map
Get readonly record of all tags.
uuidRequired
public java.lang.String getUuid();
- Type: java.lang.String
Universally unique identifier.
allowDestructiveMutationsRequired
public java.lang.Boolean getAllowDestructiveMutations();
- Type: java.lang.Boolean
Indicates if edge allows destructive mutations.
directionRequired
public EdgeDirectionEnum getDirection();
- Type: EdgeDirectionEnum
Indicates the direction in which the edge is directed.
edgeTypeRequired
public EdgeTypeEnum getEdgeType();
- Type: EdgeTypeEnum
Type of edge.
isClosedRequired
public java.lang.Boolean getIsClosed();
- Type: java.lang.Boolean
Indicates if the Edge's source and target are the same, or were the same when it was created (prior to mutations).
To check whether it was originally closed, use hasFlag(FlagEnum.CLOSED_EDGE) instead.
isCrossStackRequired
public java.lang.Boolean getIsCrossStack();
- Type: java.lang.Boolean
Indicates if source and target nodes reside in different root stacks.
isExtraneousRequired
public java.lang.Boolean getIsExtraneous();
- Type: java.lang.Boolean
Indicates if edge is extraneous which is determined by explicitly having EXTRANEOUS flag added and/or being a closed loop (source===target).
sourceRequired
public Node getSource();
- Type: Node
Edge source is the node that defines the edge (tail).
targetRequired
public Node getTarget();
- Type: Node
Edge target is the node being referenced by the source (head).
Filters
Initializers
import software.aws.pdk.cdk_graph.Filters;
new Filters();
| Name | Type | Description |
|---|---|---|
Static Functions
| Name | Description |
|---|---|
collapseCdkOwnedResources |
Collapses all Cdk Owned containers, which more closely mirrors the application code by removing resources that are automatically created by cdk. |
collapseCdkWrappers |
Collapses all Cdk Resource wrappers that wrap directly wrap a CfnResource. |
collapseCustomResources |
Collapses Custom Resource nodes to a single node. |
compact |
Collapses extraneous nodes to parent and cdk created nodes on themselves, and prunes extraneous edges. |
excludeCfnType |
Prune all {@link Graph.ResourceNode} and {@link Graph.CfnResourceNode} nodes matching specified list of CloudFormation types. |
excludeNodeType |
Prune all {@link Graph.Node}s matching specified list. |
includeCfnType |
Prune all {@link Graph.ResourceNode} and {@link Graph.CfnResourceNode} nodes except those matching specified list of CloudFormation types. |
includeNodeType |
Prune all {@link Graph.Node}s except those matching specified list. |
pruneCustomResources |
Prune Custom Resource nodes. |
pruneEmptyContainers |
Prune empty containers, which are non-resource default nodes without any children. |
pruneExtraneous |
Prune extraneous nodes and edges. |
uncluster |
Remove clusters by hoisting their children to the parent of the cluster and collapsing the cluster itself to its parent. |
verifyFilterable |
Verify that store is filterable, meaning it allows destructive mutations. |
collapseCdkOwnedResources
import software.aws.pdk.cdk_graph.Filters;
Filters.collapseCdkOwnedResources()
Collapses all Cdk Owned containers, which more closely mirrors the application code by removing resources that are automatically created by cdk.
collapseCdkWrappers
import software.aws.pdk.cdk_graph.Filters;
Filters.collapseCdkWrappers()
Collapses all Cdk Resource wrappers that wrap directly wrap a CfnResource.
Example, s3.Bucket wraps s3.CfnBucket.
collapseCustomResources
import software.aws.pdk.cdk_graph.Filters;
Filters.collapseCustomResources()
Collapses Custom Resource nodes to a single node.
compact
import software.aws.pdk.cdk_graph.Filters;
Filters.compact()
Collapses extraneous nodes to parent and cdk created nodes on themselves, and prunes extraneous edges.
This most closely represents the developers code for the current application and reduces the noise one expects.
Invokes: 1.
- pruneExtraneous()(store);
- collapseCdkOwnedResources()(store);
- collapseCdkWrappers()(store);
- collapseCustomResources()(store);
- ~pruneCustomResources()(store);~
- pruneEmptyContainers()(store);
excludeCfnType
import software.aws.pdk.cdk_graph.Filters;
Filters.excludeCfnType(java.util.List<FilterValue> cfnTypes)
Prune all {@link Graph.ResourceNode} and {@link Graph.CfnResourceNode} nodes matching specified list of CloudFormation types.
cfnTypesRequired
- Type: java.util.List<FilterValue>
excludeNodeType
import software.aws.pdk.cdk_graph.Filters;
Filters.excludeNodeType(java.util.List<FilterValue> nodeTypes)
Prune all {@link Graph.Node}s matching specified list.
This filter targets all nodes (except root) - {@link IGraphFilter.allNodes}
nodeTypesRequired
- Type: java.util.List<FilterValue>
includeCfnType
import software.aws.pdk.cdk_graph.Filters;
Filters.includeCfnType(java.util.List<FilterValue> cfnTypes)
Prune all {@link Graph.ResourceNode} and {@link Graph.CfnResourceNode} nodes except those matching specified list of CloudFormation types.
cfnTypesRequired
- Type: java.util.List<FilterValue>
includeNodeType
import software.aws.pdk.cdk_graph.Filters;
Filters.includeNodeType(java.util.List<FilterValue> nodeTypes)
Prune all {@link Graph.Node}s except those matching specified list.
This filter targets all nodes (except root) - {@link IGraphFilter.allNodes}
nodeTypesRequired
- Type: java.util.List<FilterValue>
pruneCustomResources
import software.aws.pdk.cdk_graph.Filters;
Filters.pruneCustomResources()
Prune Custom Resource nodes.
pruneEmptyContainers
import software.aws.pdk.cdk_graph.Filters;
Filters.pruneEmptyContainers()
Prune empty containers, which are non-resource default nodes without any children.
Generally L3 constructs in which all children have already been pruned, which would be useful as containers, but without children are considered extraneous.
pruneExtraneous
import software.aws.pdk.cdk_graph.Filters;
Filters.pruneExtraneous()
Prune extraneous nodes and edges.
uncluster
import software.aws.pdk.cdk_graph.Filters;
Filters.uncluster(),Filters.uncluster(java.util.List<NodeTypeEnum> clusterTypes)
Remove clusters by hoisting their children to the parent of the cluster and collapsing the cluster itself to its parent.
clusterTypesOptional
- Type: java.util.List<NodeTypeEnum>
verifyFilterable
import software.aws.pdk.cdk_graph.Filters;
Filters.verifyFilterable(Store store)
Verify that store is filterable, meaning it allows destructive mutations.
storeRequired
- Type: Store
ImportReference
Import reference defines Fn::ImportValue type reference edge.
Initializers
import software.aws.pdk.cdk_graph.ImportReference;
new ImportReference(ITypedEdgeProps props);
| Name | Type | Description |
|---|---|---|
props |
ITypedEdgeProps |
No description. |
propsRequired
- Type: ITypedEdgeProps
Methods
| Name | Description |
|---|---|
addAttribute |
Add attribute. |
addFlag |
Add flag. |
addMetadata |
Add metadata entry. |
addTag |
Add tag. |
applyData |
Applies data (attributes, metadata, tags, flag) to entity. |
findMetadata |
Retrieves all metadata entries of a given type. |
getAttribute |
Get attribute by key. |
getTag |
Get tag by key. |
hasAttribute |
Indicates if entity has a given attribute defined, and optionally with a specific value. |
hasFlag |
Indicates if entity has a given flag. |
hasMetadata |
Indicates if entity has matching metadata entry. |
hasTag |
Indicates if entity has tag, optionally verifying tag value. |
mutateDestroy |
Destroy the edge. |
setAttribute |
Set attribute. |
setTag |
Set tag. |
isEquivalent |
Indicates if this edge is equivalent to another edge. |
mutateConsume |
Merge an equivalent edge's data into this edge and destroy the other edge. |
mutateDirection |
Change the edge direction. |
mutateSource |
Change the edge source. |
mutateTarget |
Change the edge target. |
toString |
Get string representation of this edge. |
resolveChain |
Resolve reference chain. |
resolveTargets |
Resolve targets by following potential edge chain. |
addAttribute
public void addAttribute(java.lang.String key, java.lang.Object value)
Add attribute.
keyRequired
- Type: java.lang.String
valueRequired
- Type: java.lang.Object
addFlag
public void addFlag(FlagEnum flag)
Add flag.
flagRequired
- Type: FlagEnum
addMetadata
public void addMetadata(java.lang.String metadataType, java.lang.Object data)
Add metadata entry.
metadataTypeRequired
- Type: java.lang.String
dataRequired
- Type: java.lang.Object
addTag
public void addTag(java.lang.String key, java.lang.String value)
Add tag.
keyRequired
- Type: java.lang.String
valueRequired
- Type: java.lang.String
applyData
public void applyData(IBaseEntityDataProps data)
public void applyData(IBaseEntityDataProps data, java.lang.Boolean overwrite)
public void applyData(IBaseEntityDataProps data, java.lang.Boolean overwrite, java.lang.Boolean applyFlags)
Applies data (attributes, metadata, tags, flag) to entity.
Generally used only for mutations such as collapse and consume to retain data.
dataRequired
- Type: IBaseEntityDataProps
The data to apply.
overwriteOptional
- Type: java.lang.Boolean
applyFlagsOptional
- Type: java.lang.Boolean
Indicates if data is overwritten - Indicates if flags should be applied.
findMetadata
public java.util.List<MetadataEntry> findMetadata(java.lang.String metadataType)
Retrieves all metadata entries of a given type.
metadataTypeRequired
- Type: java.lang.String
getAttribute
public java.lang.Object getAttribute(java.lang.String key)
Get attribute by key.
keyRequired
- Type: java.lang.String
getTag
public java.lang.String getTag(java.lang.String key)
Get tag by key.
keyRequired
- Type: java.lang.String
hasAttribute
public java.lang.Boolean hasAttribute(java.lang.String key)
public java.lang.Boolean hasAttribute(java.lang.String key, java.lang.Object value)
Indicates if entity has a given attribute defined, and optionally with a specific value.
keyRequired
- Type: java.lang.String
valueOptional
- Type: java.lang.Object
hasFlag
public java.lang.Boolean hasFlag(FlagEnum flag)
Indicates if entity has a given flag.
flagRequired
- Type: FlagEnum
hasMetadata
public java.lang.Boolean hasMetadata(java.lang.String metadataType, java.lang.Object data)
Indicates if entity has matching metadata entry.
metadataTypeRequired
- Type: java.lang.String
dataRequired
- Type: java.lang.Object
hasTag
public java.lang.Boolean hasTag(java.lang.String key)
public java.lang.Boolean hasTag(java.lang.String key, java.lang.String value)
Indicates if entity has tag, optionally verifying tag value.
keyRequired
- Type: java.lang.String
valueOptional
- Type: java.lang.String
mutateDestroy
public void mutateDestroy()
public void mutateDestroy(java.lang.Boolean _strict)
Destroy the edge.
Remove all references and remove from store.
_strictOptional
- Type: java.lang.Boolean
setAttribute
public void setAttribute(java.lang.String key, java.lang.Object value)
Set attribute.
This will overwrite existing attribute.
keyRequired
- Type: java.lang.String
valueRequired
- Type: java.lang.Object
setTag
public void setTag(java.lang.String key, java.lang.String value)
Set tag.
Will overwrite existing tag.
keyRequired
- Type: java.lang.String
valueRequired
- Type: java.lang.String
isEquivalent
public java.lang.Boolean isEquivalent(Edge edge)
Indicates if this edge is equivalent to another edge.
Edges are considered equivalent if they share same type, source, and target.
edgeRequired
- Type: Edge
mutateConsume
public void mutateConsume(Edge edge)
Merge an equivalent edge's data into this edge and destroy the other edge.
Used during filtering operations to consolidate equivalent edges.
edgeRequired
- Type: Edge
The edge to consume.
mutateDirection
public void mutateDirection(EdgeDirectionEnum direction)
Change the edge direction.
directionRequired
- Type: EdgeDirectionEnum
mutateSource
public void mutateSource(Node node)
Change the edge source.
nodeRequired
- Type: Node
mutateTarget
public void mutateTarget(Node node)
Change the edge target.
nodeRequired
- Type: Node
toString
public java.lang.String toString()
Get string representation of this edge.
resolveChain
public java.util.List<java.lang.Object> resolveChain()
Resolve reference chain.
resolveTargets
public java.util.List<Node> resolveTargets()
Resolve targets by following potential edge chain.
Static Functions
| Name | Description |
|---|---|
findAllInChain |
Find all matching edges based on predicate within an EdgeChain. |
findInChain |
Find first edge matching predicate within an EdgeChain. |
isRef |
Indicates if edge is a Ref based {@link Reference} edge. |
isReference |
Indicates if edge is a {@link Reference}. |
isImport |
Indicates if edge is Fn::ImportValue based {@link Reference}. |
findAllInChain
import software.aws.pdk.cdk_graph.ImportReference;
ImportReference.findAllInChain(java.util.List<java.lang.Object> chain, IEdgePredicate predicate)
Find all matching edges based on predicate within an EdgeChain.
chainRequired
- Type: java.util.List
predicateRequired
- Type: IEdgePredicate
findInChain
import software.aws.pdk.cdk_graph.ImportReference;
ImportReference.findInChain(java.util.List<java.lang.Object> chain, IEdgePredicate predicate)
Find first edge matching predicate within an EdgeChain.
chainRequired
- Type: java.util.List
predicateRequired
- Type: IEdgePredicate
isRef
import software.aws.pdk.cdk_graph.ImportReference;
ImportReference.isRef(Edge edge)
Indicates if edge is a Ref based {@link Reference} edge.
edgeRequired
- Type: Edge
isReference
import software.aws.pdk.cdk_graph.ImportReference;
ImportReference.isReference(Edge edge)
Indicates if edge is a {@link Reference}.
edgeRequired
- Type: Edge
isImport
import software.aws.pdk.cdk_graph.ImportReference;
ImportReference.isImport(Edge edge)
Indicates if edge is Fn::ImportValue based {@link Reference}.
edgeRequired
- Type: Edge
Properties
| Name | Type | Description |
|---|---|---|
attributes |
java.util.Map |
Get readonly record of all attributes. |
flags |
java.util.List<FlagEnum> |
Get readonly list of all flags. |
isDestroyed |
java.lang.Boolean |
Indicates if the entity has been destroyed (eg: removed from store). |
isMutated |
java.lang.Boolean |
Indicates if the entity has had destructive mutations applied. |
metadata |
java.util.List |
Get readonly list of all metadata entries. |
store |
Store |
Reference to the store. |
tags |
java.util.Map |
Get readonly record of all tags. |
uuid |
java.lang.String |
Universally unique identifier. |
allowDestructiveMutations |
java.lang.Boolean |
Indicates if edge allows destructive mutations. |
direction |
EdgeDirectionEnum |
Indicates the direction in which the edge is directed. |
edgeType |
EdgeTypeEnum |
Type of edge. |
isClosed |
java.lang.Boolean |
Indicates if the Edge's source and target are the same, or were the same when it was created (prior to mutations). |
isCrossStack |
java.lang.Boolean |
Indicates if source and target nodes reside in different root stacks. |
isExtraneous |
java.lang.Boolean |
Indicates if edge is extraneous which is determined by explicitly having EXTRANEOUS flag added and/or being a closed loop (source===target). |
source |
Node |
Edge source is the node that defines the edge (tail). |
target |
Node |
Edge target is the node being referenced by the source (head). |
referenceType |
ReferenceTypeEnum |
Get type of reference. |
attributesRequired
public java.lang.Object getAttributes();
- Type: java.util.Map
PlainObject\ OR java.util.List\ PlainObject\>>
Get readonly record of all attributes.
flagsRequired
public java.util.List<FlagEnum> getFlags();
- Type: java.util.List<FlagEnum>
Get readonly list of all flags.
isDestroyedRequired
public java.lang.Boolean getIsDestroyed();
- Type: java.lang.Boolean
Indicates if the entity has been destroyed (eg: removed from store).
isMutatedRequired
public java.lang.Boolean getIsMutated();
- Type: java.lang.Boolean
Indicates if the entity has had destructive mutations applied.
metadataRequired
public java.util.List<MetadataEntry> getMetadata();
- Type: java.util.List
Get readonly list of all metadata entries.
storeRequired
public Store getStore();
- Type: Store
Reference to the store.
tagsRequired
public java.util.Map<java.lang.String, java.lang.String> getTags();
- Type: java.util.Map
Get readonly record of all tags.
uuidRequired
public java.lang.String getUuid();
- Type: java.lang.String
Universally unique identifier.
allowDestructiveMutationsRequired
public java.lang.Boolean getAllowDestructiveMutations();
- Type: java.lang.Boolean
Indicates if edge allows destructive mutations.
directionRequired
public EdgeDirectionEnum getDirection();
- Type: EdgeDirectionEnum
Indicates the direction in which the edge is directed.
edgeTypeRequired
public EdgeTypeEnum getEdgeType();
- Type: EdgeTypeEnum
Type of edge.
isClosedRequired
public java.lang.Boolean getIsClosed();
- Type: java.lang.Boolean
Indicates if the Edge's source and target are the same, or were the same when it was created (prior to mutations).
To check whether it was originally closed, use hasFlag(FlagEnum.CLOSED_EDGE) instead.
isCrossStackRequired
public java.lang.Boolean getIsCrossStack();
- Type: java.lang.Boolean
Indicates if source and target nodes reside in different root stacks.
isExtraneousRequired
public java.lang.Boolean getIsExtraneous();
- Type: java.lang.Boolean
Indicates if edge is extraneous which is determined by explicitly having EXTRANEOUS flag added and/or being a closed loop (source===target).
sourceRequired
public Node getSource();
- Type: Node
Edge source is the node that defines the edge (tail).
targetRequired
public Node getTarget();
- Type: Node
Edge target is the node being referenced by the source (head).
referenceTypeRequired
public ReferenceTypeEnum getReferenceType();
- Type: ReferenceTypeEnum
Get type of reference.
Constants
| Name | Type | Description |
|---|---|---|
ATT_TYPE |
java.lang.String |
Attribute defining the type of reference. |
PREFIX |
java.lang.String |
Edge prefix to denote Fn::ImportValue type reference edge. |
ATT_TYPERequired
public java.lang.String getAttType();
- Type: java.lang.String
Attribute defining the type of reference.
PREFIXRequired
public java.lang.String getPrefix();
- Type: java.lang.String
Edge prefix to denote Fn::ImportValue type reference edge.
NestedStackNode
NestedStackNode defines a cdk NestedStack.
Initializers
import software.aws.pdk.cdk_graph.NestedStackNode;
new NestedStackNode(INestedStackNodeProps props);
| Name | Type | Description |
|---|---|---|
props |
INestedStackNodeProps |
No description. |
propsRequired
- Type: INestedStackNodeProps
Methods
| Name | Description |
|---|---|
addAttribute |
Add attribute. |
addFlag |
Add flag. |
addMetadata |
Add metadata entry. |
addTag |
Add tag. |
applyData |
Applies data (attributes, metadata, tags, flag) to entity. |
findMetadata |
Retrieves all metadata entries of a given type. |
getAttribute |
Get attribute by key. |
getTag |
Get tag by key. |
hasAttribute |
Indicates if entity has a given attribute defined, and optionally with a specific value. |
hasFlag |
Indicates if entity has a given flag. |
hasMetadata |
Indicates if entity has matching metadata entry. |
hasTag |
Indicates if entity has tag, optionally verifying tag value. |
mutateDestroy |
Destroys this node by removing all references and removing this node from the store. |
setAttribute |
Set attribute. |
setTag |
Set tag. |
addChild |
Add child node. |
addLink |
Add link to another node. |
addReverseLink |
Add link from another node. |
doesDependOn |
Indicates if this node depends on another node. |
doesReference |
Indicates if this node references another node. |
find |
Recursively find the nearest sub-node matching predicate. |
findAll |
Return this construct and all of its sub-nodes in the given order. |
findAllLinks |
Return all direct links of this node and that of all sub-nodes. |
findAncestor |
Find nearest ancestor of this node matching given predicate. |
findChild |
Find child with given id. |
findLink |
Find link of this node based on predicate. |
findLinks |
Find all links of this node based on predicate. |
getCfnProp |
Get specific CloudFormation property. |
getChild |
Get child node with given id. |
getLinkChains |
Resolve all link chains. |
getNearestAncestor |
Gets the nearest common ancestor shared between this node and another node. |
isAncestor |
Indicates if a specific node is an ancestor of this node. |
isChild |
Indicates if specific node is a child of this node. |
mutateCollapse |
Collapses all sub-nodes of this node into this node. |
mutateCollapseTo |
Collapses this node into an ancestor. |
mutateCollapseToParent |
Collapses this node into it's parent node. |
mutateHoist |
Hoist this node to an ancestor by removing it from its current parent node and in turn moving it to the ancestor. |
mutateMove |
Move this node into a new parent node. |
mutateRemoveChild |
Remove a child node from this node. |
mutateRemoveLink |
Remove a link from this node. |
mutateRemoveReverseLink |
Remove a link to this node. |
mutateUncluster |
Hoist all children to parent and collapse node to parent. |
toString |
Get string representation of this node. |
addOutput |
Associate {@link OutputNode} with this stack. |
addParameter |
Associate {@link ParameterNode} with this stack. |
findOutput |
Find {@link OutputNode} with logicalId defined by this stack. |
findParameter |
Find {@link ParameterNode} with parameterId defined by this stack. |
mutateRemoveOutput |
Disassociate {@link OutputNode} from this stack. |
mutateRemoveParameter |
Disassociate {@link ParameterNode} from this stack. |
addAttribute
public void addAttribute(java.lang.String key, java.lang.Object value)
Add attribute.
keyRequired
- Type: java.lang.String
valueRequired
- Type: java.lang.Object
addFlag
public void addFlag(FlagEnum flag)
Add flag.
flagRequired
- Type: FlagEnum
addMetadata
public void addMetadata(java.lang.String metadataType, java.lang.Object data)
Add metadata entry.
metadataTypeRequired
- Type: java.lang.String
dataRequired
- Type: java.lang.Object
addTag
public void addTag(java.lang.String key, java.lang.String value)
Add tag.
keyRequired
- Type: java.lang.String
valueRequired
- Type: java.lang.String
applyData
public void applyData(IBaseEntityDataProps data)
public void applyData(IBaseEntityDataProps data, java.lang.Boolean overwrite)
public void applyData(IBaseEntityDataProps data, java.lang.Boolean overwrite, java.lang.Boolean applyFlags)
Applies data (attributes, metadata, tags, flag) to entity.
Generally used only for mutations such as collapse and consume to retain data.
dataRequired
- Type: IBaseEntityDataProps
The data to apply.
overwriteOptional
- Type: java.lang.Boolean
applyFlagsOptional
- Type: java.lang.Boolean
Indicates if data is overwritten - Indicates if flags should be applied.
findMetadata
public java.util.List<MetadataEntry> findMetadata(java.lang.String metadataType)
Retrieves all metadata entries of a given type.
metadataTypeRequired
- Type: java.lang.String
getAttribute
public java.lang.Object getAttribute(java.lang.String key)
Get attribute by key.
keyRequired
- Type: java.lang.String
getTag
public java.lang.String getTag(java.lang.String key)
Get tag by key.
keyRequired
- Type: java.lang.String
hasAttribute
public java.lang.Boolean hasAttribute(java.lang.String key)
public java.lang.Boolean hasAttribute(java.lang.String key, java.lang.Object value)
Indicates if entity has a given attribute defined, and optionally with a specific value.
keyRequired
- Type: java.lang.String
valueOptional
- Type: java.lang.Object
hasFlag
public java.lang.Boolean hasFlag(FlagEnum flag)
Indicates if entity has a given flag.
flagRequired
- Type: FlagEnum
hasMetadata
public java.lang.Boolean hasMetadata(java.lang.String metadataType, java.lang.Object data)
Indicates if entity has matching metadata entry.
metadataTypeRequired
- Type: java.lang.String
dataRequired
- Type: java.lang.Object
hasTag
public java.lang.Boolean hasTag(java.lang.String key)
public java.lang.Boolean hasTag(java.lang.String key, java.lang.String value)
Indicates if entity has tag, optionally verifying tag value.
keyRequired
- Type: java.lang.String
valueOptional
- Type: java.lang.String
mutateDestroy
public void mutateDestroy()
public void mutateDestroy(java.lang.Boolean strict)
Destroys this node by removing all references and removing this node from the store.
strictOptional
- Type: java.lang.Boolean
setAttribute
public void setAttribute(java.lang.String key, java.lang.Object value)
Set attribute.
This will overwrite existing attribute.
keyRequired
- Type: java.lang.String
valueRequired
- Type: java.lang.Object
setTag
public void setTag(java.lang.String key, java.lang.String value)
Set tag.
Will overwrite existing tag.
keyRequired
- Type: java.lang.String
valueRequired
- Type: java.lang.String
addChild
public void addChild(Node node)
Add child node.
nodeRequired
- Type: Node
addLink
public void addLink(Edge edge)
Add link to another node.
edgeRequired
- Type: Edge
addReverseLink
public void addReverseLink(Edge edge)
Add link from another node.
edgeRequired
- Type: Edge
doesDependOn
public java.lang.Boolean doesDependOn(Node node)
Indicates if this node depends on another node.
nodeRequired
- Type: Node
doesReference
public java.lang.Boolean doesReference(Node node)
Indicates if this node references another node.
nodeRequired
- Type: Node
find
public Node find(INodePredicate predicate)
Recursively find the nearest sub-node matching predicate.
predicateRequired
- Type: INodePredicate
findAll
public java.util.List<Node> findAll()
public java.util.List<Node> findAll(IFindNodeOptions options)
Return this construct and all of its sub-nodes in the given order.
Optionally filter nodes based on predicate.
optionsOptional
- Type: IFindNodeOptions
findAllLinks
public java.util.List<Edge> findAllLinks()
public java.util.List<Edge> findAllLinks(IFindEdgeOptions options)
Return all direct links of this node and that of all sub-nodes.
Optionally filter links based on predicate.
optionsOptional
- Type: IFindEdgeOptions
findAncestor
public Node findAncestor(INodePredicate predicate)
public Node findAncestor(INodePredicate predicate, java.lang.Number max)
Find nearest ancestor of this node matching given predicate.
predicateRequired
- Type: INodePredicate
Predicate to match ancestor.
maxOptional
- Type: java.lang.Number
findChild
public Node findChild(java.lang.String id)
Find child with given id.
Similar to find but does not throw error if no child found.
idRequired
- Type: java.lang.String
findLink
public Edge findLink(IEdgePredicate predicate)
public Edge findLink(IEdgePredicate predicate, java.lang.Boolean reverse)
public Edge findLink(IEdgePredicate predicate, java.lang.Boolean reverse, java.lang.Boolean follow)
public Edge findLink(IEdgePredicate predicate, java.lang.Boolean reverse, java.lang.Boolean follow, java.lang.Boolean direct)
Find link of this node based on predicate.
By default this will follow link chains to evaluate the predicate against and return the matching direct link of this node.
predicateRequired
- Type: IEdgePredicate
Edge predicate function to match edge.
reverseOptional
- Type: java.lang.Boolean
Indicates if links are search in reverse order.
followOptional
- Type: java.lang.Boolean
Indicates if link chain is followed.
directOptional
- Type: java.lang.Boolean
Indicates that only direct links should be searched.
findLinks
public java.util.List<Edge> findLinks(IEdgePredicate predicate)
public java.util.List<Edge> findLinks(IEdgePredicate predicate, java.lang.Boolean reverse)
public java.util.List<Edge> findLinks(IEdgePredicate predicate, java.lang.Boolean reverse, java.lang.Boolean follow)
public java.util.List<Edge> findLinks(IEdgePredicate predicate, java.lang.Boolean reverse, java.lang.Boolean follow, java.lang.Boolean direct)
Find all links of this node based on predicate.
By default this will follow link chains to evaluate the predicate against and return the matching direct links of this node.
predicateRequired
- Type: IEdgePredicate
Edge predicate function to match edge.
reverseOptional
- Type: java.lang.Boolean
Indicates if links are search in reverse order.
followOptional
- Type: java.lang.Boolean
Indicates if link chain is followed.
directOptional
- Type: java.lang.Boolean
Indicates that only direct links should be searched.
getCfnProp
public java.lang.String OR java.lang.Number OR java.lang.Boolean OR PlainObject OR java.util.List<java.lang.String OR java.lang.Number OR java.lang.Boolean OR PlainObject> getCfnProp(java.lang.String key)
Get specific CloudFormation property.
keyRequired
- Type: java.lang.String
getChild
public Node getChild(java.lang.String id)
Get child node with given id.
idRequired
- Type: java.lang.String
getLinkChains
public java.util.List<java.util.List<java.lang.Object>> getLinkChains()
public java.util.List<java.util.List<java.lang.Object>> getLinkChains(java.lang.Boolean reverse)
Resolve all link chains.
reverseOptional
- Type: java.lang.Boolean
getNearestAncestor
public Node getNearestAncestor(Node node)
Gets the nearest common ancestor shared between this node and another node.
nodeRequired
- Type: Node
isAncestor
public java.lang.Boolean isAncestor(Node ancestor)
Indicates if a specific node is an ancestor of this node.
ancestorRequired
- Type: Node
isChild
public java.lang.Boolean isChild(Node node)
Indicates if specific node is a child of this node.
nodeRequired
- Type: Node
mutateCollapse
public void mutateCollapse()
Collapses all sub-nodes of this node into this node.
mutateCollapseTo
public Node mutateCollapseTo(Node ancestor)
Collapses this node into an ancestor.
ancestorRequired
- Type: Node
mutateCollapseToParent
public Node mutateCollapseToParent()
Collapses this node into it's parent node.
mutateHoist
public void mutateHoist(Node newParent)
Hoist this node to an ancestor by removing it from its current parent node and in turn moving it to the ancestor.
newParentRequired
- Type: Node
mutateMove
public void mutateMove(Node newParent)
Move this node into a new parent node.
newParentRequired
- Type: Node
The parent to move this node to.
mutateRemoveChild
public java.lang.Boolean mutateRemoveChild(Node node)
Remove a child node from this node.
nodeRequired
- Type: Node
mutateRemoveLink
public java.lang.Boolean mutateRemoveLink(Edge link)
Remove a link from this node.
linkRequired
- Type: Edge
mutateRemoveReverseLink
public java.lang.Boolean mutateRemoveReverseLink(Edge link)
Remove a link to this node.
linkRequired
- Type: Edge
mutateUncluster
public void mutateUncluster()
Hoist all children to parent and collapse node to parent.
toString
public java.lang.String toString()
Get string representation of this node.
addOutput
public void addOutput(OutputNode node)
Associate {@link OutputNode} with this stack.
nodeRequired
- Type: OutputNode
addParameter
public void addParameter(ParameterNode node)
Associate {@link ParameterNode} with this stack.
nodeRequired
- Type: ParameterNode
findOutput
public OutputNode findOutput(java.lang.String logicalId)
Find {@link OutputNode} with logicalId defined by this stack.
logicalIdRequired
- Type: java.lang.String
findParameter
public ParameterNode findParameter(java.lang.String parameterId)
Find {@link ParameterNode} with parameterId defined by this stack.
parameterIdRequired
- Type: java.lang.String
mutateRemoveOutput
public java.lang.Boolean mutateRemoveOutput(OutputNode node)
Disassociate {@link OutputNode} from this stack.
nodeRequired
- Type: OutputNode
mutateRemoveParameter
public java.lang.Boolean mutateRemoveParameter(ParameterNode node)
Disassociate {@link ParameterNode} from this stack.
nodeRequired
- Type: ParameterNode
Static Functions
| Name | Description |
|---|---|
isStackNode |
Indicates if node is a {@link StackNode}. |
of |
Gets the {@link StackNode} containing a given resource. |
isNestedStackNode |
Indicates if node is a {@link NestedStackNode}. |
isStackNode
import software.aws.pdk.cdk_graph.NestedStackNode;
NestedStackNode.isStackNode(Node node)
Indicates if node is a {@link StackNode}.
nodeRequired
- Type: Node
of
import software.aws.pdk.cdk_graph.NestedStackNode;
NestedStackNode.of(Node node)
Gets the {@link StackNode} containing a given resource.
nodeRequired
- Type: Node
isNestedStackNode
import software.aws.pdk.cdk_graph.NestedStackNode;
NestedStackNode.isNestedStackNode(Node node)
Indicates if node is a {@link NestedStackNode}.
nodeRequired
- Type: Node
Properties
| Name | Type | Description |
|---|---|---|
attributes |
java.util.Map |
Get readonly record of all attributes. |
flags |
java.util.List<FlagEnum> |
Get readonly list of all flags. |
isDestroyed |
java.lang.Boolean |
Indicates if the entity has been destroyed (eg: removed from store). |
isMutated |
java.lang.Boolean |
Indicates if the entity has had destructive mutations applied. |
metadata |
java.util.List |
Get readonly list of all metadata entries. |
store |
Store |
Reference to the store. |
tags |
java.util.Map |
Get readonly record of all tags. |
uuid |
java.lang.String |
Universally unique identifier. |
allowDestructiveMutations |
java.lang.Boolean |
Indicates if this node allows destructive mutations. |
children |
java.util.List<Node> |
Get all direct child nodes. |
dependedOnBy |
java.util.List<Node> |
Get list of Nodes that depend on this node. |
dependencies |
java.util.List<Node> |
Get list of Nodes that this node depends on. |
dependencyLinks |
java.util.List<Dependency> |
Gets list of {@link Dependency} links (edges) where this node is the source. |
depth |
java.lang.Number |
Indicates the depth of the node relative to root (0). |
id |
java.lang.String |
Node id, which is only unique within parent scope. |
isAsset |
java.lang.Boolean |
Indicates if this node is considered a {@link FlagEnum.ASSET}. |
isCfnFqn |
java.lang.Boolean |
Indicates if node ConstructInfoFqn denotes a aws-cdk-lib.*.Cfn* construct. |
isCluster |
java.lang.Boolean |
Indicates if this node is considered a {@link FlagEnum.CLUSTER}. |
isCustomResource |
java.lang.Boolean |
Indicates if node is a Custom Resource. |
isExtraneous |
java.lang.Boolean |
Indicates if this node is considered a {@link FlagEnum.EXTRANEOUS} node or determined to be extraneous: - Clusters that contain no children. |
isGraphContainer |
java.lang.Boolean |
Indicates if this node is considered a {@link FlagEnum.GRAPH_CONTAINER}. |
isLeaf |
java.lang.Boolean |
Indicates if this node is a leaf node, which means it does not have children. |
isTopLevel |
java.lang.Boolean |
Indicates if node is direct child of the graph root node. |
links |
java.util.List<Edge> |
Gets all links (edges) in which this node is the source. |
nodeType |
NodeTypeEnum |
Type of node. |
path |
java.lang.String |
Path of the node. |
referencedBy |
java.util.List<Node> |
Get list of Nodes that reference this node. |
referenceLinks |
java.util.List<Reference> |
Gets list of {@link Reference} links (edges) where this node is the source. |
references |
java.util.List<Node> |
Get list of Nodes that this node references. |
reverseDependencyLinks |
java.util.List<Dependency> |
Gets list of {@link Dependency} links (edges) where this node is the target. |
reverseLinks |
java.util.List<Edge> |
Gets all links (edges) in which this node is the target. |
reverseReferenceLinks |
java.util.List<Reference> |
Gets list of {@link Reference} links (edges) where this node is the target. |
scopes |
java.util.List<Node> |
Gets descending ordered list of ancestors from the root. |
siblings |
java.util.List<Node> |
Get list of siblings of this node. |
cfnProps |
PlainObject |
Gets CloudFormation properties for this node. |
cfnType |
java.lang.String |
Get the CloudFormation resource type for this node. |
constructInfo |
ConstructInfo |
Synthesized construct information defining jii resolution data. |
constructInfoFqn |
java.lang.String |
Synthesized construct information defining jii resolution data. |
logicalId |
java.lang.String |
Logical id of the node, which is only unique within containing stack. |
parent |
Node |
Parent node. |
rootStack |
StackNode |
Get root stack. |
stack |
StackNode |
Stack the node is contained in. |
exports |
java.util.List<OutputNode> |
Get all exported {@link OutputNode}s defined by this stack. |
outputs |
java.util.List<OutputNode> |
Get all {@link OutputNode}s defined by this stack. |
parameters |
java.util.List<ParameterNode> |
Get all {@link ParameterNode}s defined by this stack. |
stage |
StageNode |
Get {@link StageNode} containing this stack. |
parentStack |
StackNode |
Get parent stack of this nested stack. |
attributesRequired
public java.lang.Object getAttributes();
- Type: java.util.Map
PlainObject\ OR java.util.List\ PlainObject\>>
Get readonly record of all attributes.
flagsRequired
public java.util.List<FlagEnum> getFlags();
- Type: java.util.List<FlagEnum>
Get readonly list of all flags.
isDestroyedRequired
public java.lang.Boolean getIsDestroyed();
- Type: java.lang.Boolean
Indicates if the entity has been destroyed (eg: removed from store).
isMutatedRequired
public java.lang.Boolean getIsMutated();
- Type: java.lang.Boolean
Indicates if the entity has had destructive mutations applied.
metadataRequired
public java.util.List<MetadataEntry> getMetadata();
- Type: java.util.List
Get readonly list of all metadata entries.
storeRequired
public Store getStore();
- Type: Store
Reference to the store.
tagsRequired
public java.util.Map<java.lang.String, java.lang.String> getTags();
- Type: java.util.Map
Get readonly record of all tags.
uuidRequired
public java.lang.String getUuid();
- Type: java.lang.String
Universally unique identifier.
allowDestructiveMutationsRequired
public java.lang.Boolean getAllowDestructiveMutations();
- Type: java.lang.Boolean
Indicates if this node allows destructive mutations.
childrenRequired
public java.util.List<Node> getChildren();
- Type: java.util.List<Node>
Get all direct child nodes.
dependedOnByRequired
public java.util.List<Node> getDependedOnBy();
- Type: java.util.List<Node>
Get list of Nodes that depend on this node.
dependenciesRequired
public java.util.List<Node> getDependencies();
- Type: java.util.List<Node>
Get list of Nodes that this node depends on.
dependencyLinksRequired
public java.util.List<Dependency> getDependencyLinks();
- Type: java.util.List<Dependency>
Gets list of {@link Dependency} links (edges) where this node is the source.
depthRequired
public java.lang.Number getDepth();
- Type: java.lang.Number
Indicates the depth of the node relative to root (0).
idRequired
public java.lang.String getId();
- Type: java.lang.String
Node id, which is only unique within parent scope.
isAssetRequired
public java.lang.Boolean getIsAsset();
- Type: java.lang.Boolean
Indicates if this node is considered a {@link FlagEnum.ASSET}.
isCfnFqnRequired
public java.lang.Boolean getIsCfnFqn();
- Type: java.lang.Boolean
Indicates if node ConstructInfoFqn denotes a aws-cdk-lib.*.Cfn* construct.
isClusterRequired
public java.lang.Boolean getIsCluster();
- Type: java.lang.Boolean
Indicates if this node is considered a {@link FlagEnum.CLUSTER}.
isCustomResourceRequired
public java.lang.Boolean getIsCustomResource();
- Type: java.lang.Boolean
Indicates if node is a Custom Resource.
isExtraneousRequired
public java.lang.Boolean getIsExtraneous();
- Type: java.lang.Boolean
Indicates if this node is considered a {@link FlagEnum.EXTRANEOUS} node or determined to be extraneous: - Clusters that contain no children.
isGraphContainerRequired
public java.lang.Boolean getIsGraphContainer();
- Type: java.lang.Boolean
Indicates if this node is considered a {@link FlagEnum.GRAPH_CONTAINER}.
isLeafRequired
public java.lang.Boolean getIsLeaf();
- Type: java.lang.Boolean
Indicates if this node is a leaf node, which means it does not have children.
isTopLevelRequired
public java.lang.Boolean getIsTopLevel();
- Type: java.lang.Boolean
Indicates if node is direct child of the graph root node.
linksRequired
public java.util.List<Edge> getLinks();
- Type: java.util.List<Edge>
Gets all links (edges) in which this node is the source.
nodeTypeRequired
public NodeTypeEnum getNodeType();
- Type: NodeTypeEnum
Type of node.
pathRequired
public java.lang.String getPath();
- Type: java.lang.String
Path of the node.
referencedByRequired
public java.util.List<Node> getReferencedBy();
- Type: java.util.List<Node>
Get list of Nodes that reference this node.
referenceLinksRequired
public java.util.List<Reference> getReferenceLinks();
- Type: java.util.List<Reference>
Gets list of {@link Reference} links (edges) where this node is the source.
referencesRequired
public java.util.List<Node> getReferences();
- Type: java.util.List<Node>
Get list of Nodes that this node references.
reverseDependencyLinksRequired
public java.util.List<Dependency> getReverseDependencyLinks();
- Type: java.util.List<Dependency>
Gets list of {@link Dependency} links (edges) where this node is the target.
reverseLinksRequired
public java.util.List<Edge> getReverseLinks();
- Type: java.util.List<Edge>
Gets all links (edges) in which this node is the target.
reverseReferenceLinksRequired
public java.util.List<Reference> getReverseReferenceLinks();
- Type: java.util.List<Reference>
Gets list of {@link Reference} links (edges) where this node is the target.
scopesRequired
public java.util.List<Node> getScopes();
- Type: java.util.List<Node>
Gets descending ordered list of ancestors from the root.
siblingsRequired
public java.util.List<Node> getSiblings();
- Type: java.util.List<Node>
Get list of siblings of this node.
cfnPropsOptional
public PlainObject getCfnProps();
- Type: PlainObject
Gets CloudFormation properties for this node.
cfnTypeOptional
public java.lang.String getCfnType();
- Type: java.lang.String
Get the CloudFormation resource type for this node.
constructInfoOptional
public ConstructInfo getConstructInfo();
- Type: ConstructInfo
Synthesized construct information defining jii resolution data.
constructInfoFqnOptional
public java.lang.String getConstructInfoFqn();
- Type: java.lang.String
Synthesized construct information defining jii resolution data.
logicalIdOptional
public java.lang.String getLogicalId();
- Type: java.lang.String
Logical id of the node, which is only unique within containing stack.
parentOptional
public Node getParent();
- Type: Node
Parent node.
Only the root node should not have parent.
rootStackOptional
public StackNode getRootStack();
- Type: StackNode
Get root stack.
stackOptional
public StackNode getStack();
- Type: StackNode
Stack the node is contained in.
exportsRequired
public java.util.List<OutputNode> getExports();
- Type: java.util.List<OutputNode>
Get all exported {@link OutputNode}s defined by this stack.
outputsRequired
public java.util.List<OutputNode> getOutputs();
- Type: java.util.List<OutputNode>
Get all {@link OutputNode}s defined by this stack.
parametersRequired
public java.util.List<ParameterNode> getParameters();
- Type: java.util.List<ParameterNode>
Get all {@link ParameterNode}s defined by this stack.
stageOptional
public StageNode getStage();
- Type: StageNode
Get {@link StageNode} containing this stack.
parentStackOptional
public StackNode getParentStack();
- Type: StackNode
Get parent stack of this nested stack.
Node
- Implements: ISerializableNode
Node class is the base definition of node entities in the graph, as in standard graph theory.
Initializers
import software.aws.pdk.cdk_graph.Node;
new Node(INodeProps props);
| Name | Type | Description |
|---|---|---|
props |
INodeProps |
No description. |
propsRequired
- Type: INodeProps
Methods
| Name | Description |
|---|---|
addAttribute |
Add attribute. |
addFlag |
Add flag. |
addMetadata |
Add metadata entry. |
addTag |
Add tag. |
applyData |
Applies data (attributes, metadata, tags, flag) to entity. |
findMetadata |
Retrieves all metadata entries of a given type. |
getAttribute |
Get attribute by key. |
getTag |
Get tag by key. |
hasAttribute |
Indicates if entity has a given attribute defined, and optionally with a specific value. |
hasFlag |
Indicates if entity has a given flag. |
hasMetadata |
Indicates if entity has matching metadata entry. |
hasTag |
Indicates if entity has tag, optionally verifying tag value. |
mutateDestroy |
Destroys this node by removing all references and removing this node from the store. |
setAttribute |
Set attribute. |
setTag |
Set tag. |
addChild |
Add child node. |
addLink |
Add link to another node. |
addReverseLink |
Add link from another node. |
doesDependOn |
Indicates if this node depends on another node. |
doesReference |
Indicates if this node references another node. |
find |
Recursively find the nearest sub-node matching predicate. |
findAll |
Return this construct and all of its sub-nodes in the given order. |
findAllLinks |
Return all direct links of this node and that of all sub-nodes. |
findAncestor |
Find nearest ancestor of this node matching given predicate. |
findChild |
Find child with given id. |
findLink |
Find link of this node based on predicate. |
findLinks |
Find all links of this node based on predicate. |
getCfnProp |
Get specific CloudFormation property. |
getChild |
Get child node with given id. |
getLinkChains |
Resolve all link chains. |
getNearestAncestor |
Gets the nearest common ancestor shared between this node and another node. |
isAncestor |
Indicates if a specific node is an ancestor of this node. |
isChild |
Indicates if specific node is a child of this node. |
mutateCollapse |
Collapses all sub-nodes of this node into this node. |
mutateCollapseTo |
Collapses this node into an ancestor. |
mutateCollapseToParent |
Collapses this node into it's parent node. |
mutateHoist |
Hoist this node to an ancestor by removing it from its current parent node and in turn moving it to the ancestor. |
mutateMove |
Move this node into a new parent node. |
mutateRemoveChild |
Remove a child node from this node. |
mutateRemoveLink |
Remove a link from this node. |
mutateRemoveReverseLink |
Remove a link to this node. |
mutateUncluster |
Hoist all children to parent and collapse node to parent. |
toString |
Get string representation of this node. |
addAttribute
public void addAttribute(java.lang.String key, java.lang.Object value)
Add attribute.
keyRequired
- Type: java.lang.String
valueRequired
- Type: java.lang.Object
addFlag
public void addFlag(FlagEnum flag)
Add flag.
flagRequired
- Type: FlagEnum
addMetadata
public void addMetadata(java.lang.String metadataType, java.lang.Object data)
Add metadata entry.
metadataTypeRequired
- Type: java.lang.String
dataRequired
- Type: java.lang.Object
addTag
public void addTag(java.lang.String key, java.lang.String value)
Add tag.
keyRequired
- Type: java.lang.String
valueRequired
- Type: java.lang.String
applyData
public void applyData(IBaseEntityDataProps data)
public void applyData(IBaseEntityDataProps data, java.lang.Boolean overwrite)
public void applyData(IBaseEntityDataProps data, java.lang.Boolean overwrite, java.lang.Boolean applyFlags)
Applies data (attributes, metadata, tags, flag) to entity.
Generally used only for mutations such as collapse and consume to retain data.
dataRequired
- Type: IBaseEntityDataProps
The data to apply.
overwriteOptional
- Type: java.lang.Boolean
applyFlagsOptional
- Type: java.lang.Boolean
Indicates if data is overwritten - Indicates if flags should be applied.
findMetadata
public java.util.List<MetadataEntry> findMetadata(java.lang.String metadataType)
Retrieves all metadata entries of a given type.
metadataTypeRequired
- Type: java.lang.String
getAttribute
public java.lang.Object getAttribute(java.lang.String key)
Get attribute by key.
keyRequired
- Type: java.lang.String
getTag
public java.lang.String getTag(java.lang.String key)
Get tag by key.
keyRequired
- Type: java.lang.String
hasAttribute
public java.lang.Boolean hasAttribute(java.lang.String key)
public java.lang.Boolean hasAttribute(java.lang.String key, java.lang.Object value)
Indicates if entity has a given attribute defined, and optionally with a specific value.
keyRequired
- Type: java.lang.String
valueOptional
- Type: java.lang.Object
hasFlag
public java.lang.Boolean hasFlag(FlagEnum flag)
Indicates if entity has a given flag.
flagRequired
- Type: FlagEnum
hasMetadata
public java.lang.Boolean hasMetadata(java.lang.String metadataType, java.lang.Object data)
Indicates if entity has matching metadata entry.
metadataTypeRequired
- Type: java.lang.String
dataRequired
- Type: java.lang.Object
hasTag
public java.lang.Boolean hasTag(java.lang.String key)
public java.lang.Boolean hasTag(java.lang.String key, java.lang.String value)
Indicates if entity has tag, optionally verifying tag value.
keyRequired
- Type: java.lang.String
valueOptional
- Type: java.lang.String
mutateDestroy
public void mutateDestroy()
public void mutateDestroy(java.lang.Boolean strict)
Destroys this node by removing all references and removing this node from the store.
strictOptional
- Type: java.lang.Boolean
Indicates that this node must not have references.
setAttribute
public void setAttribute(java.lang.String key, java.lang.Object value)
Set attribute.
This will overwrite existing attribute.
keyRequired
- Type: java.lang.String
valueRequired
- Type: java.lang.Object
setTag
public void setTag(java.lang.String key, java.lang.String value)
Set tag.
Will overwrite existing tag.
keyRequired
- Type: java.lang.String
valueRequired
- Type: java.lang.String
addChild
public void addChild(Node node)
Add child node.
nodeRequired
- Type: Node
addLink
public void addLink(Edge edge)
Add link to another node.
edgeRequired
- Type: Edge
addReverseLink
public void addReverseLink(Edge edge)
Add link from another node.
edgeRequired
- Type: Edge
doesDependOn
public java.lang.Boolean doesDependOn(Node node)
Indicates if this node depends on another node.
nodeRequired
- Type: Node
doesReference
public java.lang.Boolean doesReference(Node node)
Indicates if this node references another node.
nodeRequired
- Type: Node
find
public Node find(INodePredicate predicate)
Recursively find the nearest sub-node matching predicate.
predicateRequired
- Type: INodePredicate
findAll
public java.util.List<Node> findAll()
public java.util.List<Node> findAll(IFindNodeOptions options)
Return this construct and all of its sub-nodes in the given order.
Optionally filter nodes based on predicate.
optionsOptional
- Type: IFindNodeOptions
findAllLinks
public java.util.List<Edge> findAllLinks()
public java.util.List<Edge> findAllLinks(IFindEdgeOptions options)
Return all direct links of this node and that of all sub-nodes.
Optionally filter links based on predicate.
optionsOptional
- Type: IFindEdgeOptions
findAncestor
public Node findAncestor(INodePredicate predicate)
public Node findAncestor(INodePredicate predicate, java.lang.Number max)
Find nearest ancestor of this node matching given predicate.
predicateRequired
- Type: INodePredicate
Predicate to match ancestor.
maxOptional
- Type: java.lang.Number
findChild
public Node findChild(java.lang.String id)
Find child with given id.
Similar to find but does not throw error if no child found.
idRequired
- Type: java.lang.String
findLink
public Edge findLink(IEdgePredicate predicate)
public Edge findLink(IEdgePredicate predicate, java.lang.Boolean reverse)
public Edge findLink(IEdgePredicate predicate, java.lang.Boolean reverse, java.lang.Boolean follow)
public Edge findLink(IEdgePredicate predicate, java.lang.Boolean reverse, java.lang.Boolean follow, java.lang.Boolean direct)
Find link of this node based on predicate.
By default this will follow link chains to evaluate the predicate against and return the matching direct link of this node.
predicateRequired
- Type: IEdgePredicate
Edge predicate function to match edge.
reverseOptional
- Type: java.lang.Boolean
Indicates if links are search in reverse order.
followOptional
- Type: java.lang.Boolean
Indicates if link chain is followed.
directOptional
- Type: java.lang.Boolean
Indicates that only direct links should be searched.
findLinks
public java.util.List<Edge> findLinks(IEdgePredicate predicate)
public java.util.List<Edge> findLinks(IEdgePredicate predicate, java.lang.Boolean reverse)
public java.util.List<Edge> findLinks(IEdgePredicate predicate, java.lang.Boolean reverse, java.lang.Boolean follow)
public java.util.List<Edge> findLinks(IEdgePredicate predicate, java.lang.Boolean reverse, java.lang.Boolean follow, java.lang.Boolean direct)
Find all links of this node based on predicate.
By default this will follow link chains to evaluate the predicate against and return the matching direct links of this node.
predicateRequired
- Type: IEdgePredicate
Edge predicate function to match edge.
reverseOptional
- Type: java.lang.Boolean
Indicates if links are search in reverse order.
followOptional
- Type: java.lang.Boolean
Indicates if link chain is followed.
directOptional
- Type: java.lang.Boolean
Indicates that only direct links should be searched.
getCfnProp
public java.lang.String OR java.lang.Number OR java.lang.Boolean OR PlainObject OR java.util.List<java.lang.String OR java.lang.Number OR java.lang.Boolean OR PlainObject> getCfnProp(java.lang.String key)
Get specific CloudFormation property.
keyRequired
- Type: java.lang.String
getChild
public Node getChild(java.lang.String id)
Get child node with given id.
idRequired
- Type: java.lang.String
getLinkChains
public java.util.List<java.util.List<java.lang.Object>> getLinkChains()
public java.util.List<java.util.List<java.lang.Object>> getLinkChains(java.lang.Boolean reverse)
Resolve all link chains.
reverseOptional
- Type: java.lang.Boolean
getNearestAncestor
public Node getNearestAncestor(Node node)
Gets the nearest common ancestor shared between this node and another node.
nodeRequired
- Type: Node
isAncestor
public java.lang.Boolean isAncestor(Node ancestor)
Indicates if a specific node is an ancestor of this node.
ancestorRequired
- Type: Node
isChild
public java.lang.Boolean isChild(Node node)
Indicates if specific node is a child of this node.
nodeRequired
- Type: Node
mutateCollapse
public void mutateCollapse()
Collapses all sub-nodes of this node into this node.
mutateCollapseTo
public Node mutateCollapseTo(Node ancestor)
Collapses this node into an ancestor.
ancestorRequired
- Type: Node
mutateCollapseToParent
public Node mutateCollapseToParent()
Collapses this node into it's parent node.
mutateHoist
public void mutateHoist(Node newParent)
Hoist this node to an ancestor by removing it from its current parent node and in turn moving it to the ancestor.
newParentRequired
- Type: Node
mutateMove
public void mutateMove(Node newParent)
Move this node into a new parent node.
newParentRequired
- Type: Node
The parent to move this node to.
mutateRemoveChild
public java.lang.Boolean mutateRemoveChild(Node node)
Remove a child node from this node.
nodeRequired
- Type: Node
mutateRemoveLink
public java.lang.Boolean mutateRemoveLink(Edge link)
Remove a link from this node.
linkRequired
- Type: Edge
mutateRemoveReverseLink
public java.lang.Boolean mutateRemoveReverseLink(Edge link)
Remove a link to this node.
linkRequired
- Type: Edge
mutateUncluster
public void mutateUncluster()
Hoist all children to parent and collapse node to parent.
toString
public java.lang.String toString()
Get string representation of this node.
Properties
| Name | Type | Description |
|---|---|---|
attributes |
java.util.Map |
Get readonly record of all attributes. |
flags |
java.util.List<FlagEnum> |
Get readonly list of all flags. |
isDestroyed |
java.lang.Boolean |
Indicates if the entity has been destroyed (eg: removed from store). |
isMutated |
java.lang.Boolean |
Indicates if the entity has had destructive mutations applied. |
metadata |
java.util.List |
Get readonly list of all metadata entries. |
store |
Store |
Reference to the store. |
tags |
java.util.Map |
Get readonly record of all tags. |
uuid |
java.lang.String |
Universally unique identifier. |
allowDestructiveMutations |
java.lang.Boolean |
Indicates if this node allows destructive mutations. |
children |
java.util.List<Node> |
Get all direct child nodes. |
dependedOnBy |
java.util.List<Node> |
Get list of Nodes that depend on this node. |
dependencies |
java.util.List<Node> |
Get list of Nodes that this node depends on. |
dependencyLinks |
java.util.List<Dependency> |
Gets list of {@link Dependency} links (edges) where this node is the source. |
depth |
java.lang.Number |
Indicates the depth of the node relative to root (0). |
id |
java.lang.String |
Node id, which is only unique within parent scope. |
isAsset |
java.lang.Boolean |
Indicates if this node is considered a {@link FlagEnum.ASSET}. |
isCfnFqn |
java.lang.Boolean |
Indicates if node ConstructInfoFqn denotes a aws-cdk-lib.*.Cfn* construct. |
isCluster |
java.lang.Boolean |
Indicates if this node is considered a {@link FlagEnum.CLUSTER}. |
isCustomResource |
java.lang.Boolean |
Indicates if node is a Custom Resource. |
isExtraneous |
java.lang.Boolean |
Indicates if this node is considered a {@link FlagEnum.EXTRANEOUS} node or determined to be extraneous: - Clusters that contain no children. |
isGraphContainer |
java.lang.Boolean |
Indicates if this node is considered a {@link FlagEnum.GRAPH_CONTAINER}. |
isLeaf |
java.lang.Boolean |
Indicates if this node is a leaf node, which means it does not have children. |
isTopLevel |
java.lang.Boolean |
Indicates if node is direct child of the graph root node. |
links |
java.util.List<Edge> |
Gets all links (edges) in which this node is the source. |
nodeType |
NodeTypeEnum |
Type of node. |
path |
java.lang.String |
Path of the node. |
referencedBy |
java.util.List<Node> |
Get list of Nodes that reference this node. |
referenceLinks |
java.util.List<Reference> |
Gets list of {@link Reference} links (edges) where this node is the source. |
references |
java.util.List<Node> |
Get list of Nodes that this node references. |
reverseDependencyLinks |
java.util.List<Dependency> |
Gets list of {@link Dependency} links (edges) where this node is the target. |
reverseLinks |
java.util.List<Edge> |
Gets all links (edges) in which this node is the target. |
reverseReferenceLinks |
java.util.List<Reference> |
Gets list of {@link Reference} links (edges) where this node is the target. |
scopes |
java.util.List<Node> |
Gets descending ordered list of ancestors from the root. |
siblings |
java.util.List<Node> |
Get list of siblings of this node. |
cfnProps |
PlainObject |
Gets CloudFormation properties for this node. |
cfnType |
java.lang.String |
Get the CloudFormation resource type for this node. |
constructInfo |
ConstructInfo |
Synthesized construct information defining jii resolution data. |
constructInfoFqn |
java.lang.String |
Synthesized construct information defining jii resolution data. |
logicalId |
java.lang.String |
Logical id of the node, which is only unique within containing stack. |
parent |
Node |
Parent node. |
rootStack |
StackNode |
Get root stack. |
stack |
StackNode |
Stack the node is contained in. |
attributesRequired
public java.lang.Object getAttributes();
- Type: java.util.Map
PlainObject\ OR java.util.List\ PlainObject\>>
Get readonly record of all attributes.
flagsRequired
public java.util.List<FlagEnum> getFlags();
- Type: java.util.List<FlagEnum>
Get readonly list of all flags.
isDestroyedRequired
public java.lang.Boolean getIsDestroyed();
- Type: java.lang.Boolean
Indicates if the entity has been destroyed (eg: removed from store).
isMutatedRequired
public java.lang.Boolean getIsMutated();
- Type: java.lang.Boolean
Indicates if the entity has had destructive mutations applied.
metadataRequired
public java.util.List<MetadataEntry> getMetadata();
- Type: java.util.List
Get readonly list of all metadata entries.
storeRequired
public Store getStore();
- Type: Store
Reference to the store.
tagsRequired
public java.util.Map<java.lang.String, java.lang.String> getTags();
- Type: java.util.Map
Get readonly record of all tags.
uuidRequired
public java.lang.String getUuid();
- Type: java.lang.String
Universally unique identifier.
allowDestructiveMutationsRequired
public java.lang.Boolean getAllowDestructiveMutations();
- Type: java.lang.Boolean
Indicates if this node allows destructive mutations.
childrenRequired
public java.util.List<Node> getChildren();
- Type: java.util.List<Node>
Get all direct child nodes.
dependedOnByRequired
public java.util.List<Node> getDependedOnBy();
- Type: java.util.List<Node>
Get list of Nodes that depend on this node.
dependenciesRequired
public java.util.List<Node> getDependencies();
- Type: java.util.List<Node>
Get list of Nodes that this node depends on.
dependencyLinksRequired
public java.util.List<Dependency> getDependencyLinks();
- Type: java.util.List<Dependency>
Gets list of {@link Dependency} links (edges) where this node is the source.
depthRequired
public java.lang.Number getDepth();
- Type: java.lang.Number
Indicates the depth of the node relative to root (0).
idRequired
public java.lang.String getId();
- Type: java.lang.String
Node id, which is only unique within parent scope.
isAssetRequired
public java.lang.Boolean getIsAsset();
- Type: java.lang.Boolean
Indicates if this node is considered a {@link FlagEnum.ASSET}.
isCfnFqnRequired
public java.lang.Boolean getIsCfnFqn();
- Type: java.lang.Boolean
Indicates if node ConstructInfoFqn denotes a aws-cdk-lib.*.Cfn* construct.
isClusterRequired
public java.lang.Boolean getIsCluster();
- Type: java.lang.Boolean
Indicates if this node is considered a {@link FlagEnum.CLUSTER}.
isCustomResourceRequired
public java.lang.Boolean getIsCustomResource();
- Type: java.lang.Boolean
Indicates if node is a Custom Resource.
isExtraneousRequired
public java.lang.Boolean getIsExtraneous();
- Type: java.lang.Boolean
Indicates if this node is considered a {@link FlagEnum.EXTRANEOUS} node or determined to be extraneous: - Clusters that contain no children.
isGraphContainerRequired
public java.lang.Boolean getIsGraphContainer();
- Type: java.lang.Boolean
Indicates if this node is considered a {@link FlagEnum.GRAPH_CONTAINER}.
isLeafRequired
public java.lang.Boolean getIsLeaf();
- Type: java.lang.Boolean
Indicates if this node is a leaf node, which means it does not have children.
isTopLevelRequired
public java.lang.Boolean getIsTopLevel();
- Type: java.lang.Boolean
Indicates if node is direct child of the graph root node.
linksRequired
public java.util.List<Edge> getLinks();
- Type: java.util.List<Edge>
Gets all links (edges) in which this node is the source.
nodeTypeRequired
public NodeTypeEnum getNodeType();
- Type: NodeTypeEnum
Type of node.
pathRequired
public java.lang.String getPath();
- Type: java.lang.String
Path of the node.
referencedByRequired
public java.util.List<Node> getReferencedBy();
- Type: java.util.List<Node>
Get list of Nodes that reference this node.
referenceLinksRequired
public java.util.List<Reference> getReferenceLinks();
- Type: java.util.List<Reference>
Gets list of {@link Reference} links (edges) where this node is the source.
referencesRequired
public java.util.List<Node> getReferences();
- Type: java.util.List<Node>
Get list of Nodes that this node references.
reverseDependencyLinksRequired
public java.util.List<Dependency> getReverseDependencyLinks();
- Type: java.util.List<Dependency>
Gets list of {@link Dependency} links (edges) where this node is the target.
reverseLinksRequired
public java.util.List<Edge> getReverseLinks();
- Type: java.util.List<Edge>
Gets all links (edges) in which this node is the target.
reverseReferenceLinksRequired
public java.util.List<Reference> getReverseReferenceLinks();
- Type: java.util.List<Reference>
Gets list of {@link Reference} links (edges) where this node is the target.
scopesRequired
public java.util.List<Node> getScopes();
- Type: java.util.List<Node>
Gets descending ordered list of ancestors from the root.
siblingsRequired
public java.util.List<Node> getSiblings();
- Type: java.util.List<Node>
Get list of siblings of this node.
cfnPropsOptional
public PlainObject getCfnProps();
- Type: PlainObject
Gets CloudFormation properties for this node.
cfnTypeOptional
public java.lang.String getCfnType();
- Type: java.lang.String
Get the CloudFormation resource type for this node.
constructInfoOptional
public ConstructInfo getConstructInfo();
- Type: ConstructInfo
Synthesized construct information defining jii resolution data.
constructInfoFqnOptional
public java.lang.String getConstructInfoFqn();
- Type: java.lang.String
Synthesized construct information defining jii resolution data.
logicalIdOptional
public java.lang.String getLogicalId();
- Type: java.lang.String
Logical id of the node, which is only unique within containing stack.
parentOptional
public Node getParent();
- Type: Node
Parent node.
Only the root node should not have parent.
rootStackOptional
public StackNode getRootStack();
- Type: StackNode
Get root stack.
stackOptional
public StackNode getStack();
- Type: StackNode
Stack the node is contained in.
OutputNode
OutputNode defines a cdk CfnOutput resources.
Initializers
import software.aws.pdk.cdk_graph.OutputNode;
new OutputNode(IOutputNodeProps props);
| Name | Type | Description |
|---|---|---|
props |
IOutputNodeProps |
No description. |
propsRequired
- Type: IOutputNodeProps
Methods
| Name | Description |
|---|---|
addAttribute |
Add attribute. |
addFlag |
Add flag. |
addMetadata |
Add metadata entry. |
addTag |
Add tag. |
applyData |
Applies data (attributes, metadata, tags, flag) to entity. |
findMetadata |
Retrieves all metadata entries of a given type. |
getAttribute |
Get attribute by key. |
getTag |
Get tag by key. |
hasAttribute |
Indicates if entity has a given attribute defined, and optionally with a specific value. |
hasFlag |
Indicates if entity has a given flag. |
hasMetadata |
Indicates if entity has matching metadata entry. |
hasTag |
Indicates if entity has tag, optionally verifying tag value. |
mutateDestroy |
Destroys this node by removing all references and removing this node from the store. |
setAttribute |
Set attribute. |
setTag |
Set tag. |
addChild |
Add child node. |
addLink |
Add link to another node. |
addReverseLink |
Add link from another node. |
doesDependOn |
Indicates if this node depends on another node. |
doesReference |
Indicates if this node references another node. |
find |
Recursively find the nearest sub-node matching predicate. |
findAll |
Return this construct and all of its sub-nodes in the given order. |
findAllLinks |
Return all direct links of this node and that of all sub-nodes. |
findAncestor |
Find nearest ancestor of this node matching given predicate. |
findChild |
Find child with given id. |
findLink |
Find link of this node based on predicate. |
findLinks |
Find all links of this node based on predicate. |
getCfnProp |
Get specific CloudFormation property. |
getChild |
Get child node with given id. |
getLinkChains |
Resolve all link chains. |
getNearestAncestor |
Gets the nearest common ancestor shared between this node and another node. |
isAncestor |
Indicates if a specific node is an ancestor of this node. |
isChild |
Indicates if specific node is a child of this node. |
mutateCollapse |
Collapses all sub-nodes of this node into this node. |
mutateCollapseTo |
Collapses this node into an ancestor. |
mutateCollapseToParent |
Collapses this node into it's parent node. |
mutateHoist |
Hoist this node to an ancestor by removing it from its current parent node and in turn moving it to the ancestor. |
mutateMove |
Move this node into a new parent node. |
mutateRemoveChild |
Remove a child node from this node. |
mutateRemoveLink |
Remove a link from this node. |
mutateRemoveReverseLink |
Remove a link to this node. |
mutateUncluster |
Hoist all children to parent and collapse node to parent. |
toString |
Get string representation of this node. |
addAttribute
public void addAttribute(java.lang.String key, java.lang.Object value)
Add attribute.
keyRequired
- Type: java.lang.String
valueRequired
- Type: java.lang.Object
addFlag
public void addFlag(FlagEnum flag)
Add flag.
flagRequired
- Type: FlagEnum
addMetadata
public void addMetadata(java.lang.String metadataType, java.lang.Object data)
Add metadata entry.
metadataTypeRequired
- Type: java.lang.String
dataRequired
- Type: java.lang.Object
addTag
public void addTag(java.lang.String key, java.lang.String value)
Add tag.
keyRequired
- Type: java.lang.String
valueRequired
- Type: java.lang.String
applyData
public void applyData(IBaseEntityDataProps data)
public void applyData(IBaseEntityDataProps data, java.lang.Boolean overwrite)
public void applyData(IBaseEntityDataProps data, java.lang.Boolean overwrite, java.lang.Boolean applyFlags)
Applies data (attributes, metadata, tags, flag) to entity.
Generally used only for mutations such as collapse and consume to retain data.
dataRequired
- Type: IBaseEntityDataProps
The data to apply.
overwriteOptional
- Type: java.lang.Boolean
applyFlagsOptional
- Type: java.lang.Boolean
Indicates if data is overwritten - Indicates if flags should be applied.
findMetadata
public java.util.List<MetadataEntry> findMetadata(java.lang.String metadataType)
Retrieves all metadata entries of a given type.
metadataTypeRequired
- Type: java.lang.String
getAttribute
public java.lang.Object getAttribute(java.lang.String key)
Get attribute by key.
keyRequired
- Type: java.lang.String
getTag
public java.lang.String getTag(java.lang.String key)
Get tag by key.
keyRequired
- Type: java.lang.String
hasAttribute
public java.lang.Boolean hasAttribute(java.lang.String key)
public java.lang.Boolean hasAttribute(java.lang.String key, java.lang.Object value)
Indicates if entity has a given attribute defined, and optionally with a specific value.
keyRequired
- Type: java.lang.String
valueOptional
- Type: java.lang.Object
hasFlag
public java.lang.Boolean hasFlag(FlagEnum flag)
Indicates if entity has a given flag.
flagRequired
- Type: FlagEnum
hasMetadata
public java.lang.Boolean hasMetadata(java.lang.String metadataType, java.lang.Object data)
Indicates if entity has matching metadata entry.
metadataTypeRequired
- Type: java.lang.String
dataRequired
- Type: java.lang.Object
hasTag
public java.lang.Boolean hasTag(java.lang.String key)
public java.lang.Boolean hasTag(java.lang.String key, java.lang.String value)
Indicates if entity has tag, optionally verifying tag value.
keyRequired
- Type: java.lang.String
valueOptional
- Type: java.lang.String
mutateDestroy
public void mutateDestroy()
public void mutateDestroy(java.lang.Boolean strict)
Destroys this node by removing all references and removing this node from the store.
strictOptional
- Type: java.lang.Boolean
setAttribute
public void setAttribute(java.lang.String key, java.lang.Object value)
Set attribute.
This will overwrite existing attribute.
keyRequired
- Type: java.lang.String
valueRequired
- Type: java.lang.Object
setTag
public void setTag(java.lang.String key, java.lang.String value)
Set tag.
Will overwrite existing tag.
keyRequired
- Type: java.lang.String
valueRequired
- Type: java.lang.String
addChild
public void addChild(Node node)
Add child node.
nodeRequired
- Type: Node
addLink
public void addLink(Edge edge)
Add link to another node.
edgeRequired
- Type: Edge
addReverseLink
public void addReverseLink(Edge edge)
Add link from another node.
edgeRequired
- Type: Edge
doesDependOn
public java.lang.Boolean doesDependOn(Node node)
Indicates if this node depends on another node.
nodeRequired
- Type: Node
doesReference
public java.lang.Boolean doesReference(Node node)
Indicates if this node references another node.
nodeRequired
- Type: Node
find
public Node find(INodePredicate predicate)
Recursively find the nearest sub-node matching predicate.
predicateRequired
- Type: INodePredicate
findAll
public java.util.List<Node> findAll()
public java.util.List<Node> findAll(IFindNodeOptions options)
Return this construct and all of its sub-nodes in the given order.
Optionally filter nodes based on predicate.
optionsOptional
- Type: IFindNodeOptions
findAllLinks
public java.util.List<Edge> findAllLinks()
public java.util.List<Edge> findAllLinks(IFindEdgeOptions options)
Return all direct links of this node and that of all sub-nodes.
Optionally filter links based on predicate.
optionsOptional
- Type: IFindEdgeOptions
findAncestor
public Node findAncestor(INodePredicate predicate)
public Node findAncestor(INodePredicate predicate, java.lang.Number max)
Find nearest ancestor of this node matching given predicate.
predicateRequired
- Type: INodePredicate
Predicate to match ancestor.
maxOptional
- Type: java.lang.Number
findChild
public Node findChild(java.lang.String id)
Find child with given id.
Similar to find but does not throw error if no child found.
idRequired
- Type: java.lang.String
findLink
public Edge findLink(IEdgePredicate predicate)
public Edge findLink(IEdgePredicate predicate, java.lang.Boolean reverse)
public Edge findLink(IEdgePredicate predicate, java.lang.Boolean reverse, java.lang.Boolean follow)
public Edge findLink(IEdgePredicate predicate, java.lang.Boolean reverse, java.lang.Boolean follow, java.lang.Boolean direct)
Find link of this node based on predicate.
By default this will follow link chains to evaluate the predicate against and return the matching direct link of this node.
predicateRequired
- Type: IEdgePredicate
Edge predicate function to match edge.
reverseOptional
- Type: java.lang.Boolean
Indicates if links are search in reverse order.
followOptional
- Type: java.lang.Boolean
Indicates if link chain is followed.
directOptional
- Type: java.lang.Boolean
Indicates that only direct links should be searched.
findLinks
public java.util.List<Edge> findLinks(IEdgePredicate predicate)
public java.util.List<Edge> findLinks(IEdgePredicate predicate, java.lang.Boolean reverse)
public java.util.List<Edge> findLinks(IEdgePredicate predicate, java.lang.Boolean reverse, java.lang.Boolean follow)
public java.util.List<Edge> findLinks(IEdgePredicate predicate, java.lang.Boolean reverse, java.lang.Boolean follow, java.lang.Boolean direct)
Find all links of this node based on predicate.
By default this will follow link chains to evaluate the predicate against and return the matching direct links of this node.
predicateRequired
- Type: IEdgePredicate
Edge predicate function to match edge.
reverseOptional
- Type: java.lang.Boolean
Indicates if links are search in reverse order.
followOptional
- Type: java.lang.Boolean
Indicates if link chain is followed.
directOptional
- Type: java.lang.Boolean
Indicates that only direct links should be searched.
getCfnProp
public java.lang.String OR java.lang.Number OR java.lang.Boolean OR PlainObject OR java.util.List<java.lang.String OR java.lang.Number OR java.lang.Boolean OR PlainObject> getCfnProp(java.lang.String key)
Get specific CloudFormation property.
keyRequired
- Type: java.lang.String
getChild
public Node getChild(java.lang.String id)
Get child node with given id.
idRequired
- Type: java.lang.String
getLinkChains
public java.util.List<java.util.List<java.lang.Object>> getLinkChains()
public java.util.List<java.util.List<java.lang.Object>> getLinkChains(java.lang.Boolean reverse)
Resolve all link chains.
reverseOptional
- Type: java.lang.Boolean
getNearestAncestor
public Node getNearestAncestor(Node node)
Gets the nearest common ancestor shared between this node and another node.
nodeRequired
- Type: Node
isAncestor
public java.lang.Boolean isAncestor(Node ancestor)
Indicates if a specific node is an ancestor of this node.
ancestorRequired
- Type: Node
isChild
public java.lang.Boolean isChild(Node node)
Indicates if specific node is a child of this node.
nodeRequired
- Type: Node
mutateCollapse
public void mutateCollapse()
Collapses all sub-nodes of this node into this node.
mutateCollapseTo
public Node mutateCollapseTo(Node ancestor)
Collapses this node into an ancestor.
ancestorRequired
- Type: Node
mutateCollapseToParent
public Node mutateCollapseToParent()
Collapses this node into it's parent node.
mutateHoist
public void mutateHoist(Node newParent)
Hoist this node to an ancestor by removing it from its current parent node and in turn moving it to the ancestor.
newParentRequired
- Type: Node
mutateMove
public void mutateMove(Node newParent)
Move this node into a new parent node.
newParentRequired
- Type: Node
The parent to move this node to.
mutateRemoveChild
public java.lang.Boolean mutateRemoveChild(Node node)
Remove a child node from this node.
nodeRequired
- Type: Node
mutateRemoveLink
public java.lang.Boolean mutateRemoveLink(Edge link)
Remove a link from this node.
linkRequired
- Type: Edge
mutateRemoveReverseLink
public java.lang.Boolean mutateRemoveReverseLink(Edge link)
Remove a link to this node.
linkRequired
- Type: Edge
mutateUncluster
public void mutateUncluster()
Hoist all children to parent and collapse node to parent.
toString
public java.lang.String toString()
Get string representation of this node.
Static Functions
| Name | Description |
|---|---|
isOutputNode |
Indicates if node is an {@link OutputNode}. |
isOutputNode
import software.aws.pdk.cdk_graph.OutputNode;
OutputNode.isOutputNode(Node node)
Indicates if node is an {@link OutputNode}.
nodeRequired
- Type: Node
Properties
| Name | Type | Description |
|---|---|---|
attributes |
java.util.Map |
Get readonly record of all attributes. |
flags |
java.util.List<FlagEnum> |
Get readonly list of all flags. |
isDestroyed |
java.lang.Boolean |
Indicates if the entity has been destroyed (eg: removed from store). |
isMutated |
java.lang.Boolean |
Indicates if the entity has had destructive mutations applied. |
metadata |
java.util.List |
Get readonly list of all metadata entries. |
store |
Store |
Reference to the store. |
tags |
java.util.Map |
Get readonly record of all tags. |
uuid |
java.lang.String |
Universally unique identifier. |
allowDestructiveMutations |
java.lang.Boolean |
Indicates if this node allows destructive mutations. |
children |
java.util.List<Node> |
Get all direct child nodes. |
dependedOnBy |
java.util.List<Node> |
Get list of Nodes that depend on this node. |
dependencies |
java.util.List<Node> |
Get list of Nodes that this node depends on. |
dependencyLinks |
java.util.List<Dependency> |
Gets list of {@link Dependency} links (edges) where this node is the source. |
depth |
java.lang.Number |
Indicates the depth of the node relative to root (0). |
id |
java.lang.String |
Node id, which is only unique within parent scope. |
isAsset |
java.lang.Boolean |
Indicates if this node is considered a {@link FlagEnum.ASSET}. |
isCfnFqn |
java.lang.Boolean |
Indicates if node ConstructInfoFqn denotes a aws-cdk-lib.*.Cfn* construct. |
isCluster |
java.lang.Boolean |
Indicates if this node is considered a {@link FlagEnum.CLUSTER}. |
isCustomResource |
java.lang.Boolean |
Indicates if node is a Custom Resource. |
isExtraneous |
java.lang.Boolean |
Indicates if this node is considered a {@link FlagEnum.EXTRANEOUS} node or determined to be extraneous: - Clusters that contain no children. |
isGraphContainer |
java.lang.Boolean |
Indicates if this node is considered a {@link FlagEnum.GRAPH_CONTAINER}. |
isLeaf |
java.lang.Boolean |
Indicates if this node is a leaf node, which means it does not have children. |
isTopLevel |
java.lang.Boolean |
Indicates if node is direct child of the graph root node. |
links |
java.util.List<Edge> |
Gets all links (edges) in which this node is the source. |
nodeType |
NodeTypeEnum |
Type of node. |
path |
java.lang.String |
Path of the node. |
referencedBy |
java.util.List<Node> |
Get list of Nodes that reference this node. |
referenceLinks |
java.util.List<Reference> |
Gets list of {@link Reference} links (edges) where this node is the source. |
references |
java.util.List<Node> |
Get list of Nodes that this node references. |
reverseDependencyLinks |
java.util.List<Dependency> |
Gets list of {@link Dependency} links (edges) where this node is the target. |
reverseLinks |
java.util.List<Edge> |
Gets all links (edges) in which this node is the target. |
reverseReferenceLinks |
java.util.List<Reference> |
Gets list of {@link Reference} links (edges) where this node is the target. |
scopes |
java.util.List<Node> |
Gets descending ordered list of ancestors from the root. |
siblings |
java.util.List<Node> |
Get list of siblings of this node. |
cfnProps |
PlainObject |
Gets CloudFormation properties for this node. |
cfnType |
java.lang.String |
Get the CloudFormation resource type for this node. |
constructInfo |
ConstructInfo |
Synthesized construct information defining jii resolution data. |
constructInfoFqn |
java.lang.String |
Synthesized construct information defining jii resolution data. |
logicalId |
java.lang.String |
Logical id of the node, which is only unique within containing stack. |
parent |
Node |
Parent node. |
rootStack |
StackNode |
Get root stack. |
stack |
StackNode |
Stack the node is contained in. |
isExport |
java.lang.Boolean |
Indicates if {@link OutputNode} is exported. |
value |
java.lang.Object |
Get the value* attribute. |
exportName |
java.lang.String |
Get the export name attribute. |
attributesRequired
public java.lang.Object getAttributes();
- Type: java.util.Map
PlainObject\ OR java.util.List\ PlainObject\>>
Get readonly record of all attributes.
flagsRequired
public java.util.List<FlagEnum> getFlags();
- Type: java.util.List<FlagEnum>
Get readonly list of all flags.
isDestroyedRequired
public java.lang.Boolean getIsDestroyed();
- Type: java.lang.Boolean
Indicates if the entity has been destroyed (eg: removed from store).
isMutatedRequired
public java.lang.Boolean getIsMutated();
- Type: java.lang.Boolean
Indicates if the entity has had destructive mutations applied.
metadataRequired
public java.util.List<MetadataEntry> getMetadata();
- Type: java.util.List
Get readonly list of all metadata entries.
storeRequired
public Store getStore();
- Type: Store
Reference to the store.
tagsRequired
public java.util.Map<java.lang.String, java.lang.String> getTags();
- Type: java.util.Map
Get readonly record of all tags.
uuidRequired
public java.lang.String getUuid();
- Type: java.lang.String
Universally unique identifier.
allowDestructiveMutationsRequired
public java.lang.Boolean getAllowDestructiveMutations();
- Type: java.lang.Boolean
Indicates if this node allows destructive mutations.
childrenRequired
public java.util.List<Node> getChildren();
- Type: java.util.List<Node>
Get all direct child nodes.
dependedOnByRequired
public java.util.List<Node> getDependedOnBy();
- Type: java.util.List<Node>
Get list of Nodes that depend on this node.
dependenciesRequired
public java.util.List<Node> getDependencies();
- Type: java.util.List<Node>
Get list of Nodes that this node depends on.
dependencyLinksRequired
public java.util.List<Dependency> getDependencyLinks();
- Type: java.util.List<Dependency>
Gets list of {@link Dependency} links (edges) where this node is the source.
depthRequired
public java.lang.Number getDepth();
- Type: java.lang.Number
Indicates the depth of the node relative to root (0).
idRequired
public java.lang.String getId();
- Type: java.lang.String
Node id, which is only unique within parent scope.
isAssetRequired
public java.lang.Boolean getIsAsset();
- Type: java.lang.Boolean
Indicates if this node is considered a {@link FlagEnum.ASSET}.
isCfnFqnRequired
public java.lang.Boolean getIsCfnFqn();
- Type: java.lang.Boolean
Indicates if node ConstructInfoFqn denotes a aws-cdk-lib.*.Cfn* construct.
isClusterRequired
public java.lang.Boolean getIsCluster();
- Type: java.lang.Boolean
Indicates if this node is considered a {@link FlagEnum.CLUSTER}.
isCustomResourceRequired
public java.lang.Boolean getIsCustomResource();
- Type: java.lang.Boolean
Indicates if node is a Custom Resource.
isExtraneousRequired
public java.lang.Boolean getIsExtraneous();
- Type: java.lang.Boolean
Indicates if this node is considered a {@link FlagEnum.EXTRANEOUS} node or determined to be extraneous: - Clusters that contain no children.
isGraphContainerRequired
public java.lang.Boolean getIsGraphContainer();
- Type: java.lang.Boolean
Indicates if this node is considered a {@link FlagEnum.GRAPH_CONTAINER}.
isLeafRequired
public java.lang.Boolean getIsLeaf();
- Type: java.lang.Boolean
Indicates if this node is a leaf node, which means it does not have children.
isTopLevelRequired
public java.lang.Boolean getIsTopLevel();
- Type: java.lang.Boolean
Indicates if node is direct child of the graph root node.
linksRequired
public java.util.List<Edge> getLinks();
- Type: java.util.List<Edge>
Gets all links (edges) in which this node is the source.
nodeTypeRequired
public NodeTypeEnum getNodeType();
- Type: NodeTypeEnum
Type of node.
pathRequired
public java.lang.String getPath();
- Type: java.lang.String
Path of the node.
referencedByRequired
public java.util.List<Node> getReferencedBy();
- Type: java.util.List<Node>
Get list of Nodes that reference this node.
referenceLinksRequired
public java.util.List<Reference> getReferenceLinks();
- Type: java.util.List<Reference>
Gets list of {@link Reference} links (edges) where this node is the source.
referencesRequired
public java.util.List<Node> getReferences();
- Type: java.util.List<Node>
Get list of Nodes that this node references.
reverseDependencyLinksRequired
public java.util.List<Dependency> getReverseDependencyLinks();
- Type: java.util.List<Dependency>
Gets list of {@link Dependency} links (edges) where this node is the target.
reverseLinksRequired
public java.util.List<Edge> getReverseLinks();
- Type: java.util.List<Edge>
Gets all links (edges) in which this node is the target.
reverseReferenceLinksRequired
public java.util.List<Reference> getReverseReferenceLinks();
- Type: java.util.List<Reference>
Gets list of {@link Reference} links (edges) where this node is the target.
scopesRequired
public java.util.List<Node> getScopes();
- Type: java.util.List<Node>
Gets descending ordered list of ancestors from the root.
siblingsRequired
public java.util.List<Node> getSiblings();
- Type: java.util.List<Node>
Get list of siblings of this node.
cfnPropsOptional
public PlainObject getCfnProps();
- Type: PlainObject
Gets CloudFormation properties for this node.
cfnTypeOptional
public java.lang.String getCfnType();
- Type: java.lang.String
Get the CloudFormation resource type for this node.
constructInfoOptional
public ConstructInfo getConstructInfo();
- Type: ConstructInfo
Synthesized construct information defining jii resolution data.
constructInfoFqnOptional
public java.lang.String getConstructInfoFqn();
- Type: java.lang.String
Synthesized construct information defining jii resolution data.
logicalIdOptional
public java.lang.String getLogicalId();
- Type: java.lang.String
Logical id of the node, which is only unique within containing stack.
parentOptional
public Node getParent();
- Type: Node
Parent node.
Only the root node should not have parent.
rootStackOptional
public StackNode getRootStack();
- Type: StackNode
Get root stack.
stackOptional
public StackNode getStack();
- Type: StackNode
Stack the node is contained in.
isExportRequired
public java.lang.Boolean getIsExport();
- Type: java.lang.Boolean
Indicates if {@link OutputNode} is exported.
valueRequired
public java.lang.Object getValue();
- Type: java.lang.Object
Get the value* attribute.
exportNameOptional
public java.lang.String getExportName();
- Type: java.lang.String
Get the export name attribute.
Constants
| Name | Type | Description |
|---|---|---|
ATTR_EXPORT_NAME |
java.lang.String |
Attribute key where output export name is stored. |
ATTR_VALUE |
java.lang.String |
Attribute key where output value is stored. |
ATTR_EXPORT_NAMERequired
public java.lang.String getAttrExportName();
- Type: java.lang.String
Attribute key where output export name is stored.
ATTR_VALUERequired
public java.lang.String getAttrValue();
- Type: java.lang.String
Attribute key where output value is stored.
ParameterNode
ParameterNode defines a CfnParameter node.
Initializers
import software.aws.pdk.cdk_graph.ParameterNode;
new ParameterNode(IParameterNodeProps props);
| Name | Type | Description |
|---|---|---|
props |
IParameterNodeProps |
No description. |
propsRequired
- Type: IParameterNodeProps
Methods
| Name | Description |
|---|---|
addAttribute |
Add attribute. |
addFlag |
Add flag. |
addMetadata |
Add metadata entry. |
addTag |
Add tag. |
applyData |
Applies data (attributes, metadata, tags, flag) to entity. |
findMetadata |
Retrieves all metadata entries of a given type. |
getAttribute |
Get attribute by key. |
getTag |
Get tag by key. |
hasAttribute |
Indicates if entity has a given attribute defined, and optionally with a specific value. |
hasFlag |
Indicates if entity has a given flag. |
hasMetadata |
Indicates if entity has matching metadata entry. |
hasTag |
Indicates if entity has tag, optionally verifying tag value. |
mutateDestroy |
Destroys this node by removing all references and removing this node from the store. |
setAttribute |
Set attribute. |
setTag |
Set tag. |
addChild |
Add child node. |
addLink |
Add link to another node. |
addReverseLink |
Add link from another node. |
doesDependOn |
Indicates if this node depends on another node. |
doesReference |
Indicates if this node references another node. |
find |
Recursively find the nearest sub-node matching predicate. |
findAll |
Return this construct and all of its sub-nodes in the given order. |
findAllLinks |
Return all direct links of this node and that of all sub-nodes. |
findAncestor |
Find nearest ancestor of this node matching given predicate. |
findChild |
Find child with given id. |
findLink |
Find link of this node based on predicate. |
findLinks |
Find all links of this node based on predicate. |
getCfnProp |
Get specific CloudFormation property. |
getChild |
Get child node with given id. |
getLinkChains |
Resolve all link chains. |
getNearestAncestor |
Gets the nearest common ancestor shared between this node and another node. |
isAncestor |
Indicates if a specific node is an ancestor of this node. |
isChild |
Indicates if specific node is a child of this node. |
mutateCollapse |
Collapses all sub-nodes of this node into this node. |
mutateCollapseTo |
Collapses this node into an ancestor. |
mutateCollapseToParent |
Collapses this node into it's parent node. |
mutateHoist |
Hoist this node to an ancestor by removing it from its current parent node and in turn moving it to the ancestor. |
mutateMove |
Move this node into a new parent node. |
mutateRemoveChild |
Remove a child node from this node. |
mutateRemoveLink |
Remove a link from this node. |
mutateRemoveReverseLink |
Remove a link to this node. |
mutateUncluster |
Hoist all children to parent and collapse node to parent. |
toString |
Get string representation of this node. |
addAttribute
public void addAttribute(java.lang.String key, java.lang.Object value)
Add attribute.
keyRequired
- Type: java.lang.String
valueRequired
- Type: java.lang.Object
addFlag
public void addFlag(FlagEnum flag)
Add flag.
flagRequired
- Type: FlagEnum
addMetadata
public void addMetadata(java.lang.String metadataType, java.lang.Object data)
Add metadata entry.
metadataTypeRequired
- Type: java.lang.String
dataRequired
- Type: java.lang.Object
addTag
public void addTag(java.lang.String key, java.lang.String value)
Add tag.
keyRequired
- Type: java.lang.String
valueRequired
- Type: java.lang.String
applyData
public void applyData(IBaseEntityDataProps data)
public void applyData(IBaseEntityDataProps data, java.lang.Boolean overwrite)
public void applyData(IBaseEntityDataProps data, java.lang.Boolean overwrite, java.lang.Boolean applyFlags)
Applies data (attributes, metadata, tags, flag) to entity.
Generally used only for mutations such as collapse and consume to retain data.
dataRequired
- Type: IBaseEntityDataProps
The data to apply.
overwriteOptional
- Type: java.lang.Boolean
applyFlagsOptional
- Type: java.lang.Boolean
Indicates if data is overwritten - Indicates if flags should be applied.
findMetadata
public java.util.List<MetadataEntry> findMetadata(java.lang.String metadataType)
Retrieves all metadata entries of a given type.
metadataTypeRequired
- Type: java.lang.String
getAttribute
public java.lang.Object getAttribute(java.lang.String key)
Get attribute by key.
keyRequired
- Type: java.lang.String
getTag
public java.lang.String getTag(java.lang.String key)
Get tag by key.
keyRequired
- Type: java.lang.String
hasAttribute
public java.lang.Boolean hasAttribute(java.lang.String key)
public java.lang.Boolean hasAttribute(java.lang.String key, java.lang.Object value)
Indicates if entity has a given attribute defined, and optionally with a specific value.
keyRequired
- Type: java.lang.String
valueOptional
- Type: java.lang.Object
hasFlag
public java.lang.Boolean hasFlag(FlagEnum flag)
Indicates if entity has a given flag.
flagRequired
- Type: FlagEnum
hasMetadata
public java.lang.Boolean hasMetadata(java.lang.String metadataType, java.lang.Object data)
Indicates if entity has matching metadata entry.
metadataTypeRequired
- Type: java.lang.String
dataRequired
- Type: java.lang.Object
hasTag
public java.lang.Boolean hasTag(java.lang.String key)
public java.lang.Boolean hasTag(java.lang.String key, java.lang.String value)
Indicates if entity has tag, optionally verifying tag value.
keyRequired
- Type: java.lang.String
valueOptional
- Type: java.lang.String
mutateDestroy
public void mutateDestroy()
public void mutateDestroy(java.lang.Boolean strict)
Destroys this node by removing all references and removing this node from the store.
strictOptional
- Type: java.lang.Boolean
setAttribute
public void setAttribute(java.lang.String key, java.lang.Object value)
Set attribute.
This will overwrite existing attribute.
keyRequired
- Type: java.lang.String
valueRequired
- Type: java.lang.Object
setTag
public void setTag(java.lang.String key, java.lang.String value)
Set tag.
Will overwrite existing tag.
keyRequired
- Type: java.lang.String
valueRequired
- Type: java.lang.String
addChild
public void addChild(Node node)
Add child node.
nodeRequired
- Type: Node
addLink
public void addLink(Edge edge)
Add link to another node.
edgeRequired
- Type: Edge
addReverseLink
public void addReverseLink(Edge edge)
Add link from another node.
edgeRequired
- Type: Edge
doesDependOn
public java.lang.Boolean doesDependOn(Node node)
Indicates if this node depends on another node.
nodeRequired
- Type: Node
doesReference
public java.lang.Boolean doesReference(Node node)
Indicates if this node references another node.
nodeRequired
- Type: Node
find
public Node find(INodePredicate predicate)
Recursively find the nearest sub-node matching predicate.
predicateRequired
- Type: INodePredicate
findAll
public java.util.List<Node> findAll()
public java.util.List<Node> findAll(IFindNodeOptions options)
Return this construct and all of its sub-nodes in the given order.
Optionally filter nodes based on predicate.
optionsOptional
- Type: IFindNodeOptions
findAllLinks
public java.util.List<Edge> findAllLinks()
public java.util.List<Edge> findAllLinks(IFindEdgeOptions options)
Return all direct links of this node and that of all sub-nodes.
Optionally filter links based on predicate.
optionsOptional
- Type: IFindEdgeOptions
findAncestor
public Node findAncestor(INodePredicate predicate)
public Node findAncestor(INodePredicate predicate, java.lang.Number max)
Find nearest ancestor of this node matching given predicate.
predicateRequired
- Type: INodePredicate
Predicate to match ancestor.
maxOptional
- Type: java.lang.Number
findChild
public Node findChild(java.lang.String id)
Find child with given id.
Similar to find but does not throw error if no child found.
idRequired
- Type: java.lang.String
findLink
public Edge findLink(IEdgePredicate predicate)
public Edge findLink(IEdgePredicate predicate, java.lang.Boolean reverse)
public Edge findLink(IEdgePredicate predicate, java.lang.Boolean reverse, java.lang.Boolean follow)
public Edge findLink(IEdgePredicate predicate, java.lang.Boolean reverse, java.lang.Boolean follow, java.lang.Boolean direct)
Find link of this node based on predicate.
By default this will follow link chains to evaluate the predicate against and return the matching direct link of this node.
predicateRequired
- Type: IEdgePredicate
Edge predicate function to match edge.
reverseOptional
- Type: java.lang.Boolean
Indicates if links are search in reverse order.
followOptional
- Type: java.lang.Boolean
Indicates if link chain is followed.
directOptional
- Type: java.lang.Boolean
Indicates that only direct links should be searched.
findLinks
public java.util.List<Edge> findLinks(IEdgePredicate predicate)
public java.util.List<Edge> findLinks(IEdgePredicate predicate, java.lang.Boolean reverse)
public java.util.List<Edge> findLinks(IEdgePredicate predicate, java.lang.Boolean reverse, java.lang.Boolean follow)
public java.util.List<Edge> findLinks(IEdgePredicate predicate, java.lang.Boolean reverse, java.lang.Boolean follow, java.lang.Boolean direct)
Find all links of this node based on predicate.
By default this will follow link chains to evaluate the predicate against and return the matching direct links of this node.
predicateRequired
- Type: IEdgePredicate
Edge predicate function to match edge.
reverseOptional
- Type: java.lang.Boolean
Indicates if links are search in reverse order.
followOptional
- Type: java.lang.Boolean
Indicates if link chain is followed.
directOptional
- Type: java.lang.Boolean
Indicates that only direct links should be searched.
getCfnProp
public java.lang.String OR java.lang.Number OR java.lang.Boolean OR PlainObject OR java.util.List<java.lang.String OR java.lang.Number OR java.lang.Boolean OR PlainObject> getCfnProp(java.lang.String key)
Get specific CloudFormation property.
keyRequired
- Type: java.lang.String
getChild
public Node getChild(java.lang.String id)
Get child node with given id.
idRequired
- Type: java.lang.String
getLinkChains
public java.util.List<java.util.List<java.lang.Object>> getLinkChains()
public java.util.List<java.util.List<java.lang.Object>> getLinkChains(java.lang.Boolean reverse)
Resolve all link chains.
reverseOptional
- Type: java.lang.Boolean
getNearestAncestor
public Node getNearestAncestor(Node node)
Gets the nearest common ancestor shared between this node and another node.
nodeRequired
- Type: Node
isAncestor
public java.lang.Boolean isAncestor(Node ancestor)
Indicates if a specific node is an ancestor of this node.
ancestorRequired
- Type: Node
isChild
public java.lang.Boolean isChild(Node node)
Indicates if specific node is a child of this node.
nodeRequired
- Type: Node
mutateCollapse
public void mutateCollapse()
Collapses all sub-nodes of this node into this node.
mutateCollapseTo
public Node mutateCollapseTo(Node ancestor)
Collapses this node into an ancestor.
ancestorRequired
- Type: Node
mutateCollapseToParent
public Node mutateCollapseToParent()
Collapses this node into it's parent node.
mutateHoist
public void mutateHoist(Node newParent)
Hoist this node to an ancestor by removing it from its current parent node and in turn moving it to the ancestor.
newParentRequired
- Type: Node
mutateMove
public void mutateMove(Node newParent)
Move this node into a new parent node.
newParentRequired
- Type: Node
The parent to move this node to.
mutateRemoveChild
public java.lang.Boolean mutateRemoveChild(Node node)
Remove a child node from this node.
nodeRequired
- Type: Node
mutateRemoveLink
public java.lang.Boolean mutateRemoveLink(Edge link)
Remove a link from this node.
linkRequired
- Type: Edge
mutateRemoveReverseLink
public java.lang.Boolean mutateRemoveReverseLink(Edge link)
Remove a link to this node.
linkRequired
- Type: Edge
mutateUncluster
public void mutateUncluster()
Hoist all children to parent and collapse node to parent.
toString
public java.lang.String toString()
Get string representation of this node.
Static Functions
| Name | Description |
|---|---|
isParameterNode |
Indicates if node is a {@link ParameterNode}. |
isParameterNode
import software.aws.pdk.cdk_graph.ParameterNode;
ParameterNode.isParameterNode(Node node)
Indicates if node is a {@link ParameterNode}.
nodeRequired
- Type: Node
Properties
| Name | Type | Description |
|---|---|---|
attributes |
java.util.Map |
Get readonly record of all attributes. |
flags |
java.util.List<FlagEnum> |
Get readonly list of all flags. |
isDestroyed |
java.lang.Boolean |
Indicates if the entity has been destroyed (eg: removed from store). |
isMutated |
java.lang.Boolean |
Indicates if the entity has had destructive mutations applied. |
metadata |
java.util.List |
Get readonly list of all metadata entries. |
store |
Store |
Reference to the store. |
tags |
java.util.Map |
Get readonly record of all tags. |
uuid |
java.lang.String |
Universally unique identifier. |
allowDestructiveMutations |
java.lang.Boolean |
Indicates if this node allows destructive mutations. |
children |
java.util.List<Node> |
Get all direct child nodes. |
dependedOnBy |
java.util.List<Node> |
Get list of Nodes that depend on this node. |
dependencies |
java.util.List<Node> |
Get list of Nodes that this node depends on. |
dependencyLinks |
java.util.List<Dependency> |
Gets list of {@link Dependency} links (edges) where this node is the source. |
depth |
java.lang.Number |
Indicates the depth of the node relative to root (0). |
id |
java.lang.String |
Node id, which is only unique within parent scope. |
isAsset |
java.lang.Boolean |
Indicates if this node is considered a {@link FlagEnum.ASSET}. |
isCfnFqn |
java.lang.Boolean |
Indicates if node ConstructInfoFqn denotes a aws-cdk-lib.*.Cfn* construct. |
isCluster |
java.lang.Boolean |
Indicates if this node is considered a {@link FlagEnum.CLUSTER}. |
isCustomResource |
java.lang.Boolean |
Indicates if node is a Custom Resource. |
isExtraneous |
java.lang.Boolean |
Indicates if this node is considered a {@link FlagEnum.EXTRANEOUS} node or determined to be extraneous: - Clusters that contain no children. |
isGraphContainer |
java.lang.Boolean |
Indicates if this node is considered a {@link FlagEnum.GRAPH_CONTAINER}. |
isLeaf |
java.lang.Boolean |
Indicates if this node is a leaf node, which means it does not have children. |
isTopLevel |
java.lang.Boolean |
Indicates if node is direct child of the graph root node. |
links |
java.util.List<Edge> |
Gets all links (edges) in which this node is the source. |
nodeType |
NodeTypeEnum |
Type of node. |
path |
java.lang.String |
Path of the node. |
referencedBy |
java.util.List<Node> |
Get list of Nodes that reference this node. |
referenceLinks |
java.util.List<Reference> |
Gets list of {@link Reference} links (edges) where this node is the source. |
references |
java.util.List<Node> |
Get list of Nodes that this node references. |
reverseDependencyLinks |
java.util.List<Dependency> |
Gets list of {@link Dependency} links (edges) where this node is the target. |
reverseLinks |
java.util.List<Edge> |
Gets all links (edges) in which this node is the target. |
reverseReferenceLinks |
java.util.List<Reference> |
Gets list of {@link Reference} links (edges) where this node is the target. |
scopes |
java.util.List<Node> |
Gets descending ordered list of ancestors from the root. |
siblings |
java.util.List<Node> |
Get list of siblings of this node. |
cfnProps |
PlainObject |
Gets CloudFormation properties for this node. |
cfnType |
java.lang.String |
Get the CloudFormation resource type for this node. |
constructInfo |
ConstructInfo |
Synthesized construct information defining jii resolution data. |
constructInfoFqn |
java.lang.String |
Synthesized construct information defining jii resolution data. |
logicalId |
java.lang.String |
Logical id of the node, which is only unique within containing stack. |
parent |
Node |
Parent node. |
rootStack |
StackNode |
Get root stack. |
stack |
StackNode |
Stack the node is contained in. |
isStackReference |
java.lang.Boolean |
Indicates if parameter is a reference to a stack. |
parameterType |
java.lang.Object |
Get the parameter type attribute. |
value |
java.lang.Object |
Get the value attribute. |
attributesRequired
public java.lang.Object getAttributes();
- Type: java.util.Map
PlainObject\ OR java.util.List\ PlainObject\>>
Get readonly record of all attributes.
flagsRequired
public java.util.List<FlagEnum> getFlags();
- Type: java.util.List<FlagEnum>
Get readonly list of all flags.
isDestroyedRequired
public java.lang.Boolean getIsDestroyed();
- Type: java.lang.Boolean
Indicates if the entity has been destroyed (eg: removed from store).
isMutatedRequired
public java.lang.Boolean getIsMutated();
- Type: java.lang.Boolean
Indicates if the entity has had destructive mutations applied.
metadataRequired
public java.util.List<MetadataEntry> getMetadata();
- Type: java.util.List
Get readonly list of all metadata entries.
storeRequired
public Store getStore();
- Type: Store
Reference to the store.
tagsRequired
public java.util.Map<java.lang.String, java.lang.String> getTags();
- Type: java.util.Map
Get readonly record of all tags.
uuidRequired
public java.lang.String getUuid();
- Type: java.lang.String
Universally unique identifier.
allowDestructiveMutationsRequired
public java.lang.Boolean getAllowDestructiveMutations();
- Type: java.lang.Boolean
Indicates if this node allows destructive mutations.
childrenRequired
public java.util.List<Node> getChildren();
- Type: java.util.List<Node>
Get all direct child nodes.
dependedOnByRequired
public java.util.List<Node> getDependedOnBy();
- Type: java.util.List<Node>
Get list of Nodes that depend on this node.
dependenciesRequired
public java.util.List<Node> getDependencies();
- Type: java.util.List<Node>
Get list of Nodes that this node depends on.
dependencyLinksRequired
public java.util.List<Dependency> getDependencyLinks();
- Type: java.util.List<Dependency>
Gets list of {@link Dependency} links (edges) where this node is the source.
depthRequired
public java.lang.Number getDepth();
- Type: java.lang.Number
Indicates the depth of the node relative to root (0).
idRequired
public java.lang.String getId();
- Type: java.lang.String
Node id, which is only unique within parent scope.
isAssetRequired
public java.lang.Boolean getIsAsset();
- Type: java.lang.Boolean
Indicates if this node is considered a {@link FlagEnum.ASSET}.
isCfnFqnRequired
public java.lang.Boolean getIsCfnFqn();
- Type: java.lang.Boolean
Indicates if node ConstructInfoFqn denotes a aws-cdk-lib.*.Cfn* construct.
isClusterRequired
public java.lang.Boolean getIsCluster();
- Type: java.lang.Boolean
Indicates if this node is considered a {@link FlagEnum.CLUSTER}.
isCustomResourceRequired
public java.lang.Boolean getIsCustomResource();
- Type: java.lang.Boolean
Indicates if node is a Custom Resource.
isExtraneousRequired
public java.lang.Boolean getIsExtraneous();
- Type: java.lang.Boolean
Indicates if this node is considered a {@link FlagEnum.EXTRANEOUS} node or determined to be extraneous: - Clusters that contain no children.
isGraphContainerRequired
public java.lang.Boolean getIsGraphContainer();
- Type: java.lang.Boolean
Indicates if this node is considered a {@link FlagEnum.GRAPH_CONTAINER}.
isLeafRequired
public java.lang.Boolean getIsLeaf();
- Type: java.lang.Boolean
Indicates if this node is a leaf node, which means it does not have children.
isTopLevelRequired
public java.lang.Boolean getIsTopLevel();
- Type: java.lang.Boolean
Indicates if node is direct child of the graph root node.
linksRequired
public java.util.List<Edge> getLinks();
- Type: java.util.List<Edge>
Gets all links (edges) in which this node is the source.
nodeTypeRequired
public NodeTypeEnum getNodeType();
- Type: NodeTypeEnum
Type of node.
pathRequired
public java.lang.String getPath();
- Type: java.lang.String
Path of the node.
referencedByRequired
public java.util.List<Node> getReferencedBy();
- Type: java.util.List<Node>
Get list of Nodes that reference this node.
referenceLinksRequired
public java.util.List<Reference> getReferenceLinks();
- Type: java.util.List<Reference>
Gets list of {@link Reference} links (edges) where this node is the source.
referencesRequired
public java.util.List<Node> getReferences();
- Type: java.util.List<Node>
Get list of Nodes that this node references.
reverseDependencyLinksRequired
public java.util.List<Dependency> getReverseDependencyLinks();
- Type: java.util.List<Dependency>
Gets list of {@link Dependency} links (edges) where this node is the target.
reverseLinksRequired
public java.util.List<Edge> getReverseLinks();
- Type: java.util.List<Edge>
Gets all links (edges) in which this node is the target.
reverseReferenceLinksRequired
public java.util.List<Reference> getReverseReferenceLinks();
- Type: java.util.List<Reference>
Gets list of {@link Reference} links (edges) where this node is the target.
scopesRequired
public java.util.List<Node> getScopes();
- Type: java.util.List<Node>
Gets descending ordered list of ancestors from the root.
siblingsRequired
public java.util.List<Node> getSiblings();
- Type: java.util.List<Node>
Get list of siblings of this node.
cfnPropsOptional
public PlainObject getCfnProps();
- Type: PlainObject
Gets CloudFormation properties for this node.
cfnTypeOptional
public java.lang.String getCfnType();
- Type: java.lang.String
Get the CloudFormation resource type for this node.
constructInfoOptional
public ConstructInfo getConstructInfo();
- Type: ConstructInfo
Synthesized construct information defining jii resolution data.
constructInfoFqnOptional
public java.lang.String getConstructInfoFqn();
- Type: java.lang.String
Synthesized construct information defining jii resolution data.
logicalIdOptional
public java.lang.String getLogicalId();
- Type: java.lang.String
Logical id of the node, which is only unique within containing stack.
parentOptional
public Node getParent();
- Type: Node
Parent node.
Only the root node should not have parent.
rootStackOptional
public StackNode getRootStack();
- Type: StackNode
Get root stack.
stackOptional
public StackNode getStack();
- Type: StackNode
Stack the node is contained in.
isStackReferenceRequired
public java.lang.Boolean getIsStackReference();
- Type: java.lang.Boolean
Indicates if parameter is a reference to a stack.
parameterTypeRequired
public java.lang.Object getParameterType();
- Type: java.lang.Object
Get the parameter type attribute.
valueRequired
public java.lang.Object getValue();
- Type: java.lang.Object
Get the value attribute.
Constants
| Name | Type | Description |
|---|---|---|
ATTR_TYPE |
java.lang.String |
Attribute key where parameter type is stored. |
ATTR_VALUE |
java.lang.String |
Attribute key where parameter value is store. |
ATTR_TYPERequired
public java.lang.String getAttrType();
- Type: java.lang.String
Attribute key where parameter type is stored.
ATTR_VALUERequired
public java.lang.String getAttrValue();
- Type: java.lang.String
Attribute key where parameter value is store.
Reference
Reference edge class defines a directed relationship between nodes.
Initializers
import software.aws.pdk.cdk_graph.Reference;
new Reference(IReferenceProps props);
| Name | Type | Description |
|---|---|---|
props |
IReferenceProps |
No description. |
propsRequired
- Type: IReferenceProps
Methods
| Name | Description |
|---|---|
addAttribute |
Add attribute. |
addFlag |
Add flag. |
addMetadata |
Add metadata entry. |
addTag |
Add tag. |
applyData |
Applies data (attributes, metadata, tags, flag) to entity. |
findMetadata |
Retrieves all metadata entries of a given type. |
getAttribute |
Get attribute by key. |
getTag |
Get tag by key. |
hasAttribute |
Indicates if entity has a given attribute defined, and optionally with a specific value. |
hasFlag |
Indicates if entity has a given flag. |
hasMetadata |
Indicates if entity has matching metadata entry. |
hasTag |
Indicates if entity has tag, optionally verifying tag value. |
mutateDestroy |
Destroy the edge. |
setAttribute |
Set attribute. |
setTag |
Set tag. |
isEquivalent |
Indicates if this edge is equivalent to another edge. |
mutateConsume |
Merge an equivalent edge's data into this edge and destroy the other edge. |
mutateDirection |
Change the edge direction. |
mutateSource |
Change the edge source. |
mutateTarget |
Change the edge target. |
toString |
Get string representation of this edge. |
resolveChain |
Resolve reference chain. |
resolveTargets |
Resolve targets by following potential edge chain. |
addAttribute
public void addAttribute(java.lang.String key, java.lang.Object value)
Add attribute.
keyRequired
- Type: java.lang.String
valueRequired
- Type: java.lang.Object
addFlag
public void addFlag(FlagEnum flag)
Add flag.
flagRequired
- Type: FlagEnum
addMetadata
public void addMetadata(java.lang.String metadataType, java.lang.Object data)
Add metadata entry.
metadataTypeRequired
- Type: java.lang.String
dataRequired
- Type: java.lang.Object
addTag
public void addTag(java.lang.String key, java.lang.String value)
Add tag.
keyRequired
- Type: java.lang.String
valueRequired
- Type: java.lang.String
applyData
public void applyData(IBaseEntityDataProps data)
public void applyData(IBaseEntityDataProps data, java.lang.Boolean overwrite)
public void applyData(IBaseEntityDataProps data, java.lang.Boolean overwrite, java.lang.Boolean applyFlags)
Applies data (attributes, metadata, tags, flag) to entity.
Generally used only for mutations such as collapse and consume to retain data.
dataRequired
- Type: IBaseEntityDataProps
The data to apply.
overwriteOptional
- Type: java.lang.Boolean
applyFlagsOptional
- Type: java.lang.Boolean
Indicates if data is overwritten - Indicates if flags should be applied.
findMetadata
public java.util.List<MetadataEntry> findMetadata(java.lang.String metadataType)
Retrieves all metadata entries of a given type.
metadataTypeRequired
- Type: java.lang.String
getAttribute
public java.lang.Object getAttribute(java.lang.String key)
Get attribute by key.
keyRequired
- Type: java.lang.String
getTag
public java.lang.String getTag(java.lang.String key)
Get tag by key.
keyRequired
- Type: java.lang.String
hasAttribute
public java.lang.Boolean hasAttribute(java.lang.String key)
public java.lang.Boolean hasAttribute(java.lang.String key, java.lang.Object value)
Indicates if entity has a given attribute defined, and optionally with a specific value.
keyRequired
- Type: java.lang.String
valueOptional
- Type: java.lang.Object
hasFlag
public java.lang.Boolean hasFlag(FlagEnum flag)
Indicates if entity has a given flag.
flagRequired
- Type: FlagEnum
hasMetadata
public java.lang.Boolean hasMetadata(java.lang.String metadataType, java.lang.Object data)
Indicates if entity has matching metadata entry.
metadataTypeRequired
- Type: java.lang.String
dataRequired
- Type: java.lang.Object
hasTag
public java.lang.Boolean hasTag(java.lang.String key)
public java.lang.Boolean hasTag(java.lang.String key, java.lang.String value)
Indicates if entity has tag, optionally verifying tag value.
keyRequired
- Type: java.lang.String
valueOptional
- Type: java.lang.String
mutateDestroy
public void mutateDestroy()
public void mutateDestroy(java.lang.Boolean _strict)
Destroy the edge.
Remove all references and remove from store.
_strictOptional
- Type: java.lang.Boolean
setAttribute
public void setAttribute(java.lang.String key, java.lang.Object value)
Set attribute.
This will overwrite existing attribute.
keyRequired
- Type: java.lang.String
valueRequired
- Type: java.lang.Object
setTag
public void setTag(java.lang.String key, java.lang.String value)
Set tag.
Will overwrite existing tag.
keyRequired
- Type: java.lang.String
valueRequired
- Type: java.lang.String
isEquivalent
public java.lang.Boolean isEquivalent(Edge edge)
Indicates if this edge is equivalent to another edge.
Edges are considered equivalent if they share same type, source, and target.
edgeRequired
- Type: Edge
mutateConsume
public void mutateConsume(Edge edge)
Merge an equivalent edge's data into this edge and destroy the other edge.
Used during filtering operations to consolidate equivalent edges.
edgeRequired
- Type: Edge
The edge to consume.
mutateDirection
public void mutateDirection(EdgeDirectionEnum direction)
Change the edge direction.
directionRequired
- Type: EdgeDirectionEnum
mutateSource
public void mutateSource(Node node)
Change the edge source.
nodeRequired
- Type: Node
mutateTarget
public void mutateTarget(Node node)
Change the edge target.
nodeRequired
- Type: Node
toString
public java.lang.String toString()
Get string representation of this edge.
resolveChain
public java.util.List<java.lang.Object> resolveChain()
Resolve reference chain.
resolveTargets
public java.util.List<Node> resolveTargets()
Resolve targets by following potential edge chain.
Static Functions
| Name | Description |
|---|---|
findAllInChain |
Find all matching edges based on predicate within an EdgeChain. |
findInChain |
Find first edge matching predicate within an EdgeChain. |
isRef |
Indicates if edge is a Ref based {@link Reference} edge. |
isReference |
Indicates if edge is a {@link Reference}. |
findAllInChain
import software.aws.pdk.cdk_graph.Reference;
Reference.findAllInChain(java.util.List<java.lang.Object> chain, IEdgePredicate predicate)
Find all matching edges based on predicate within an EdgeChain.
chainRequired
- Type: java.util.List
predicateRequired
- Type: IEdgePredicate
findInChain
import software.aws.pdk.cdk_graph.Reference;
Reference.findInChain(java.util.List<java.lang.Object> chain, IEdgePredicate predicate)
Find first edge matching predicate within an EdgeChain.
chainRequired
- Type: java.util.List
predicateRequired
- Type: IEdgePredicate
isRef
import software.aws.pdk.cdk_graph.Reference;
Reference.isRef(Edge edge)
Indicates if edge is a Ref based {@link Reference} edge.
edgeRequired
- Type: Edge
isReference
import software.aws.pdk.cdk_graph.Reference;
Reference.isReference(Edge edge)
Indicates if edge is a {@link Reference}.
edgeRequired
- Type: Edge
Properties
| Name | Type | Description |
|---|---|---|
attributes |
java.util.Map |
Get readonly record of all attributes. |
flags |
java.util.List<FlagEnum> |
Get readonly list of all flags. |
isDestroyed |
java.lang.Boolean |
Indicates if the entity has been destroyed (eg: removed from store). |
isMutated |
java.lang.Boolean |
Indicates if the entity has had destructive mutations applied. |
metadata |
java.util.List |
Get readonly list of all metadata entries. |
store |
Store |
Reference to the store. |
tags |
java.util.Map |
Get readonly record of all tags. |
uuid |
java.lang.String |
Universally unique identifier. |
allowDestructiveMutations |
java.lang.Boolean |
Indicates if edge allows destructive mutations. |
direction |
EdgeDirectionEnum |
Indicates the direction in which the edge is directed. |
edgeType |
EdgeTypeEnum |
Type of edge. |
isClosed |
java.lang.Boolean |
Indicates if the Edge's source and target are the same, or were the same when it was created (prior to mutations). |
isCrossStack |
java.lang.Boolean |
Indicates if source and target nodes reside in different root stacks. |
isExtraneous |
java.lang.Boolean |
Indicates if edge is extraneous which is determined by explicitly having EXTRANEOUS flag added and/or being a closed loop (source===target). |
source |
Node |
Edge source is the node that defines the edge (tail). |
target |
Node |
Edge target is the node being referenced by the source (head). |
referenceType |
ReferenceTypeEnum |
Get type of reference. |
attributesRequired
public java.lang.Object getAttributes();
- Type: java.util.Map
PlainObject\ OR java.util.List\ PlainObject\>>
Get readonly record of all attributes.
flagsRequired
public java.util.List<FlagEnum> getFlags();
- Type: java.util.List<FlagEnum>
Get readonly list of all flags.
isDestroyedRequired
public java.lang.Boolean getIsDestroyed();
- Type: java.lang.Boolean
Indicates if the entity has been destroyed (eg: removed from store).
isMutatedRequired
public java.lang.Boolean getIsMutated();
- Type: java.lang.Boolean
Indicates if the entity has had destructive mutations applied.
metadataRequired
public java.util.List<MetadataEntry> getMetadata();
- Type: java.util.List
Get readonly list of all metadata entries.
storeRequired
public Store getStore();
- Type: Store
Reference to the store.
tagsRequired
public java.util.Map<java.lang.String, java.lang.String> getTags();
- Type: java.util.Map
Get readonly record of all tags.
uuidRequired
public java.lang.String getUuid();
- Type: java.lang.String
Universally unique identifier.
allowDestructiveMutationsRequired
public java.lang.Boolean getAllowDestructiveMutations();
- Type: java.lang.Boolean
Indicates if edge allows destructive mutations.
directionRequired
public EdgeDirectionEnum getDirection();
- Type: EdgeDirectionEnum
Indicates the direction in which the edge is directed.
edgeTypeRequired
public EdgeTypeEnum getEdgeType();
- Type: EdgeTypeEnum
Type of edge.
isClosedRequired
public java.lang.Boolean getIsClosed();
- Type: java.lang.Boolean
Indicates if the Edge's source and target are the same, or were the same when it was created (prior to mutations).
To check whether it was originally closed, use hasFlag(FlagEnum.CLOSED_EDGE) instead.
isCrossStackRequired
public java.lang.Boolean getIsCrossStack();
- Type: java.lang.Boolean
Indicates if source and target nodes reside in different root stacks.
isExtraneousRequired
public java.lang.Boolean getIsExtraneous();
- Type: java.lang.Boolean
Indicates if edge is extraneous which is determined by explicitly having EXTRANEOUS flag added and/or being a closed loop (source===target).
sourceRequired
public Node getSource();
- Type: Node
Edge source is the node that defines the edge (tail).
targetRequired
public Node getTarget();
- Type: Node
Edge target is the node being referenced by the source (head).
referenceTypeRequired
public ReferenceTypeEnum getReferenceType();
- Type: ReferenceTypeEnum
Get type of reference.
Constants
| Name | Type | Description |
|---|---|---|
ATT_TYPE |
java.lang.String |
Attribute defining the type of reference. |
PREFIX |
java.lang.String |
Edge prefix to denote Ref type reference edge. |
ATT_TYPERequired
public java.lang.String getAttType();
- Type: java.lang.String
Attribute defining the type of reference.
PREFIXRequired
public java.lang.String getPrefix();
- Type: java.lang.String
Edge prefix to denote Ref type reference edge.
ResourceNode
ResourceNode class defines a L2 cdk resource construct.
Initializers
import software.aws.pdk.cdk_graph.ResourceNode;
new ResourceNode(IResourceNodeProps props);
| Name | Type | Description |
|---|---|---|
props |
IResourceNodeProps |
No description. |
propsRequired
- Type: IResourceNodeProps
Methods
| Name | Description |
|---|---|
addAttribute |
Add attribute. |
addFlag |
Add flag. |
addMetadata |
Add metadata entry. |
addTag |
Add tag. |
applyData |
Applies data (attributes, metadata, tags, flag) to entity. |
findMetadata |
Retrieves all metadata entries of a given type. |
getAttribute |
Get attribute by key. |
getTag |
Get tag by key. |
hasAttribute |
Indicates if entity has a given attribute defined, and optionally with a specific value. |
hasFlag |
Indicates if entity has a given flag. |
hasMetadata |
Indicates if entity has matching metadata entry. |
hasTag |
Indicates if entity has tag, optionally verifying tag value. |
mutateDestroy |
Destroys this node by removing all references and removing this node from the store. |
setAttribute |
Set attribute. |
setTag |
Set tag. |
addChild |
Add child node. |
addLink |
Add link to another node. |
addReverseLink |
Add link from another node. |
doesDependOn |
Indicates if this node depends on another node. |
doesReference |
Indicates if this node references another node. |
find |
Recursively find the nearest sub-node matching predicate. |
findAll |
Return this construct and all of its sub-nodes in the given order. |
findAllLinks |
Return all direct links of this node and that of all sub-nodes. |
findAncestor |
Find nearest ancestor of this node matching given predicate. |
findChild |
Find child with given id. |
findLink |
Find link of this node based on predicate. |
findLinks |
Find all links of this node based on predicate. |
getCfnProp |
Get specific CloudFormation property. |
getChild |
Get child node with given id. |
getLinkChains |
Resolve all link chains. |
getNearestAncestor |
Gets the nearest common ancestor shared between this node and another node. |
isAncestor |
Indicates if a specific node is an ancestor of this node. |
isChild |
Indicates if specific node is a child of this node. |
mutateCollapse |
Collapses all sub-nodes of this node into this node. |
mutateCollapseTo |
Collapses this node into an ancestor. |
mutateCollapseToParent |
Collapses this node into it's parent node. |
mutateHoist |
Hoist this node to an ancestor by removing it from its current parent node and in turn moving it to the ancestor. |
mutateMove |
Move this node into a new parent node. |
mutateRemoveChild |
Remove a child node from this node. |
mutateRemoveLink |
Remove a link from this node. |
mutateRemoveReverseLink |
Remove a link to this node. |
mutateUncluster |
Hoist all children to parent and collapse node to parent. |
toString |
Get string representation of this node. |
mutateCfnResource |
Modifies the L1 resource wrapped by this L2 resource. |
addAttribute
public void addAttribute(java.lang.String key, java.lang.Object value)
Add attribute.
keyRequired
- Type: java.lang.String
valueRequired
- Type: java.lang.Object
addFlag
public void addFlag(FlagEnum flag)
Add flag.
flagRequired
- Type: FlagEnum
addMetadata
public void addMetadata(java.lang.String metadataType, java.lang.Object data)
Add metadata entry.
metadataTypeRequired
- Type: java.lang.String
dataRequired
- Type: java.lang.Object
addTag
public void addTag(java.lang.String key, java.lang.String value)
Add tag.
keyRequired
- Type: java.lang.String
valueRequired
- Type: java.lang.String
applyData
public void applyData(IBaseEntityDataProps data)
public void applyData(IBaseEntityDataProps data, java.lang.Boolean overwrite)
public void applyData(IBaseEntityDataProps data, java.lang.Boolean overwrite, java.lang.Boolean applyFlags)
Applies data (attributes, metadata, tags, flag) to entity.
Generally used only for mutations such as collapse and consume to retain data.
dataRequired
- Type: IBaseEntityDataProps
The data to apply.
overwriteOptional
- Type: java.lang.Boolean
applyFlagsOptional
- Type: java.lang.Boolean
Indicates if data is overwritten - Indicates if flags should be applied.
findMetadata
public java.util.List<MetadataEntry> findMetadata(java.lang.String metadataType)
Retrieves all metadata entries of a given type.
metadataTypeRequired
- Type: java.lang.String
getAttribute
public java.lang.Object getAttribute(java.lang.String key)
Get attribute by key.
keyRequired
- Type: java.lang.String
getTag
public java.lang.String getTag(java.lang.String key)
Get tag by key.
keyRequired
- Type: java.lang.String
hasAttribute
public java.lang.Boolean hasAttribute(java.lang.String key)
public java.lang.Boolean hasAttribute(java.lang.String key, java.lang.Object value)
Indicates if entity has a given attribute defined, and optionally with a specific value.
keyRequired
- Type: java.lang.String
valueOptional
- Type: java.lang.Object
hasFlag
public java.lang.Boolean hasFlag(FlagEnum flag)
Indicates if entity has a given flag.
flagRequired
- Type: FlagEnum
hasMetadata
public java.lang.Boolean hasMetadata(java.lang.String metadataType, java.lang.Object data)
Indicates if entity has matching metadata entry.
metadataTypeRequired
- Type: java.lang.String
dataRequired
- Type: java.lang.Object
hasTag
public java.lang.Boolean hasTag(java.lang.String key)
public java.lang.Boolean hasTag(java.lang.String key, java.lang.String value)
Indicates if entity has tag, optionally verifying tag value.
keyRequired
- Type: java.lang.String
valueOptional
- Type: java.lang.String
mutateDestroy
public void mutateDestroy()
public void mutateDestroy(java.lang.Boolean strict)
Destroys this node by removing all references and removing this node from the store.
strictOptional
- Type: java.lang.Boolean
Indicates that this node must not have references.
setAttribute
public void setAttribute(java.lang.String key, java.lang.Object value)
Set attribute.
This will overwrite existing attribute.
keyRequired
- Type: java.lang.String
valueRequired
- Type: java.lang.Object
setTag
public void setTag(java.lang.String key, java.lang.String value)
Set tag.
Will overwrite existing tag.
keyRequired
- Type: java.lang.String
valueRequired
- Type: java.lang.String
addChild
public void addChild(Node node)
Add child node.
nodeRequired
- Type: Node
addLink
public void addLink(Edge edge)
Add link to another node.
edgeRequired
- Type: Edge
addReverseLink
public void addReverseLink(Edge edge)
Add link from another node.
edgeRequired
- Type: Edge
doesDependOn
public java.lang.Boolean doesDependOn(Node node)
Indicates if this node depends on another node.
nodeRequired
- Type: Node
doesReference
public java.lang.Boolean doesReference(Node node)
Indicates if this node references another node.
nodeRequired
- Type: Node
find
public Node find(INodePredicate predicate)
Recursively find the nearest sub-node matching predicate.
predicateRequired
- Type: INodePredicate
findAll
public java.util.List<Node> findAll()
public java.util.List<Node> findAll(IFindNodeOptions options)
Return this construct and all of its sub-nodes in the given order.
Optionally filter nodes based on predicate.
optionsOptional
- Type: IFindNodeOptions
findAllLinks
public java.util.List<Edge> findAllLinks()
public java.util.List<Edge> findAllLinks(IFindEdgeOptions options)
Return all direct links of this node and that of all sub-nodes.
Optionally filter links based on predicate.
optionsOptional
- Type: IFindEdgeOptions
findAncestor
public Node findAncestor(INodePredicate predicate)
public Node findAncestor(INodePredicate predicate, java.lang.Number max)
Find nearest ancestor of this node matching given predicate.
predicateRequired
- Type: INodePredicate
Predicate to match ancestor.
maxOptional
- Type: java.lang.Number
findChild
public Node findChild(java.lang.String id)
Find child with given id.
Similar to find but does not throw error if no child found.
idRequired
- Type: java.lang.String
findLink
public Edge findLink(IEdgePredicate predicate)
public Edge findLink(IEdgePredicate predicate, java.lang.Boolean reverse)
public Edge findLink(IEdgePredicate predicate, java.lang.Boolean reverse, java.lang.Boolean follow)
public Edge findLink(IEdgePredicate predicate, java.lang.Boolean reverse, java.lang.Boolean follow, java.lang.Boolean direct)
Find link of this node based on predicate.
By default this will follow link chains to evaluate the predicate against and return the matching direct link of this node.
predicateRequired
- Type: IEdgePredicate
Edge predicate function to match edge.
reverseOptional
- Type: java.lang.Boolean
Indicates if links are search in reverse order.
followOptional
- Type: java.lang.Boolean
Indicates if link chain is followed.
directOptional
- Type: java.lang.Boolean
Indicates that only direct links should be searched.
findLinks
public java.util.List<Edge> findLinks(IEdgePredicate predicate)
public java.util.List<Edge> findLinks(IEdgePredicate predicate, java.lang.Boolean reverse)
public java.util.List<Edge> findLinks(IEdgePredicate predicate, java.lang.Boolean reverse, java.lang.Boolean follow)
public java.util.List<Edge> findLinks(IEdgePredicate predicate, java.lang.Boolean reverse, java.lang.Boolean follow, java.lang.Boolean direct)
Find all links of this node based on predicate.
By default this will follow link chains to evaluate the predicate against and return the matching direct links of this node.
predicateRequired
- Type: IEdgePredicate
Edge predicate function to match edge.
reverseOptional
- Type: java.lang.Boolean
Indicates if links are search in reverse order.
followOptional
- Type: java.lang.Boolean
Indicates if link chain is followed.
directOptional
- Type: java.lang.Boolean
Indicates that only direct links should be searched.
getCfnProp
public java.lang.String OR java.lang.Number OR java.lang.Boolean OR PlainObject OR java.util.List<java.lang.String OR java.lang.Number OR java.lang.Boolean OR PlainObject> getCfnProp(java.lang.String key)
Get specific CloudFormation property.
keyRequired
- Type: java.lang.String
getChild
public Node getChild(java.lang.String id)
Get child node with given id.
idRequired
- Type: java.lang.String
getLinkChains
public java.util.List<java.util.List<java.lang.Object>> getLinkChains()
public java.util.List<java.util.List<java.lang.Object>> getLinkChains(java.lang.Boolean reverse)
Resolve all link chains.
reverseOptional
- Type: java.lang.Boolean
getNearestAncestor
public Node getNearestAncestor(Node node)
Gets the nearest common ancestor shared between this node and another node.
nodeRequired
- Type: Node
isAncestor
public java.lang.Boolean isAncestor(Node ancestor)
Indicates if a specific node is an ancestor of this node.
ancestorRequired
- Type: Node
isChild
public java.lang.Boolean isChild(Node node)
Indicates if specific node is a child of this node.
nodeRequired
- Type: Node
mutateCollapse
public void mutateCollapse()
Collapses all sub-nodes of this node into this node.
mutateCollapseTo
public Node mutateCollapseTo(Node ancestor)
Collapses this node into an ancestor.
ancestorRequired
- Type: Node
mutateCollapseToParent
public Node mutateCollapseToParent()
Collapses this node into it's parent node.
mutateHoist
public void mutateHoist(Node newParent)
Hoist this node to an ancestor by removing it from its current parent node and in turn moving it to the ancestor.
newParentRequired
- Type: Node
mutateMove
public void mutateMove(Node newParent)
Move this node into a new parent node.
newParentRequired
- Type: Node
The parent to move this node to.
mutateRemoveChild
public java.lang.Boolean mutateRemoveChild(Node node)
Remove a child node from this node.
nodeRequired
- Type: Node
mutateRemoveLink
public java.lang.Boolean mutateRemoveLink(Edge link)
Remove a link from this node.
linkRequired
- Type: Edge
mutateRemoveReverseLink
public java.lang.Boolean mutateRemoveReverseLink(Edge link)
Remove a link to this node.
linkRequired
- Type: Edge
mutateUncluster
public void mutateUncluster()
Hoist all children to parent and collapse node to parent.
toString
public java.lang.String toString()
Get string representation of this node.
mutateCfnResource
public void mutateCfnResource()
public void mutateCfnResource(CfnResourceNode cfnResource)
Modifies the L1 resource wrapped by this L2 resource.
cfnResourceOptional
- Type: CfnResourceNode
Static Functions
| Name | Description |
|---|---|
isResourceNode |
Indicates if node is a {@link ResourceNode}. |
isResourceNode
import software.aws.pdk.cdk_graph.ResourceNode;
ResourceNode.isResourceNode(Node node)
Indicates if node is a {@link ResourceNode}.
nodeRequired
- Type: Node
Properties
| Name | Type | Description |
|---|---|---|
attributes |
java.util.Map |
Get readonly record of all attributes. |
flags |
java.util.List<FlagEnum> |
Get readonly list of all flags. |
isDestroyed |
java.lang.Boolean |
Indicates if the entity has been destroyed (eg: removed from store). |
isMutated |
java.lang.Boolean |
Indicates if the entity has had destructive mutations applied. |
metadata |
java.util.List |
Get readonly list of all metadata entries. |
store |
Store |
Reference to the store. |
tags |
java.util.Map |
Get readonly record of all tags. |
uuid |
java.lang.String |
Universally unique identifier. |
allowDestructiveMutations |
java.lang.Boolean |
Indicates if this node allows destructive mutations. |
children |
java.util.List<Node> |
Get all direct child nodes. |
dependedOnBy |
java.util.List<Node> |
Get list of Nodes that depend on this node. |
dependencies |
java.util.List<Node> |
Get list of Nodes that this node depends on. |
dependencyLinks |
java.util.List<Dependency> |
Gets list of {@link Dependency} links (edges) where this node is the source. |
depth |
java.lang.Number |
Indicates the depth of the node relative to root (0). |
id |
java.lang.String |
Node id, which is only unique within parent scope. |
isAsset |
java.lang.Boolean |
Indicates if this node is considered a {@link FlagEnum.ASSET}. |
isCfnFqn |
java.lang.Boolean |
Indicates if node ConstructInfoFqn denotes a aws-cdk-lib.*.Cfn* construct. |
isCluster |
java.lang.Boolean |
Indicates if this node is considered a {@link FlagEnum.CLUSTER}. |
isCustomResource |
java.lang.Boolean |
Indicates if node is a Custom Resource. |
isExtraneous |
java.lang.Boolean |
Indicates if this node is considered a {@link FlagEnum.EXTRANEOUS} node or determined to be extraneous: - Clusters that contain no children. |
isGraphContainer |
java.lang.Boolean |
Indicates if this node is considered a {@link FlagEnum.GRAPH_CONTAINER}. |
isLeaf |
java.lang.Boolean |
Indicates if this node is a leaf node, which means it does not have children. |
isTopLevel |
java.lang.Boolean |
Indicates if node is direct child of the graph root node. |
links |
java.util.List<Edge> |
Gets all links (edges) in which this node is the source. |
nodeType |
NodeTypeEnum |
Type of node. |
path |
java.lang.String |
Path of the node. |
referencedBy |
java.util.List<Node> |
Get list of Nodes that reference this node. |
referenceLinks |
java.util.List<Reference> |
Gets list of {@link Reference} links (edges) where this node is the source. |
references |
java.util.List<Node> |
Get list of Nodes that this node references. |
reverseDependencyLinks |
java.util.List<Dependency> |
Gets list of {@link Dependency} links (edges) where this node is the target. |
reverseLinks |
java.util.List<Edge> |
Gets all links (edges) in which this node is the target. |
reverseReferenceLinks |
java.util.List<Reference> |
Gets list of {@link Reference} links (edges) where this node is the target. |
scopes |
java.util.List<Node> |
Gets descending ordered list of ancestors from the root. |
siblings |
java.util.List<Node> |
Get list of siblings of this node. |
cfnProps |
PlainObject |
Get the cfn properties from the L1 resource that this L2 resource wraps. |
cfnType |
java.lang.String |
Get the CloudFormation resource type for this L2 resource or for the L1 resource is wraps. |
constructInfo |
ConstructInfo |
Synthesized construct information defining jii resolution data. |
constructInfoFqn |
java.lang.String |
Synthesized construct information defining jii resolution data. |
logicalId |
java.lang.String |
Logical id of the node, which is only unique within containing stack. |
parent |
Node |
Parent node. |
rootStack |
StackNode |
Get root stack. |
stack |
StackNode |
Stack the node is contained in. |
isCdkOwned |
java.lang.Boolean |
Indicates if this resource is owned by cdk (defined in cdk library). |
isWrapper |
java.lang.Boolean |
Indicates if Resource wraps a single CfnResource. |
cfnResource |
CfnResourceNode |
Get the default/primary CfnResource that this Resource wraps. |
attributesRequired
public java.lang.Object getAttributes();
- Type: java.util.Map
PlainObject\ OR java.util.List\ PlainObject\>>
Get readonly record of all attributes.
flagsRequired
public java.util.List<FlagEnum> getFlags();
- Type: java.util.List<FlagEnum>
Get readonly list of all flags.
isDestroyedRequired
public java.lang.Boolean getIsDestroyed();
- Type: java.lang.Boolean
Indicates if the entity has been destroyed (eg: removed from store).
isMutatedRequired
public java.lang.Boolean getIsMutated();
- Type: java.lang.Boolean
Indicates if the entity has had destructive mutations applied.
metadataRequired
public java.util.List<MetadataEntry> getMetadata();
- Type: java.util.List
Get readonly list of all metadata entries.
storeRequired
public Store getStore();
- Type: Store
Reference to the store.
tagsRequired
public java.util.Map<java.lang.String, java.lang.String> getTags();
- Type: java.util.Map
Get readonly record of all tags.
uuidRequired
public java.lang.String getUuid();
- Type: java.lang.String
Universally unique identifier.
allowDestructiveMutationsRequired
public java.lang.Boolean getAllowDestructiveMutations();
- Type: java.lang.Boolean
Indicates if this node allows destructive mutations.
childrenRequired
public java.util.List<Node> getChildren();
- Type: java.util.List<Node>
Get all direct child nodes.
dependedOnByRequired
public java.util.List<Node> getDependedOnBy();
- Type: java.util.List<Node>
Get list of Nodes that depend on this node.
dependenciesRequired
public java.util.List<Node> getDependencies();
- Type: java.util.List<Node>
Get list of Nodes that this node depends on.
dependencyLinksRequired
public java.util.List<Dependency> getDependencyLinks();
- Type: java.util.List<Dependency>
Gets list of {@link Dependency} links (edges) where this node is the source.
depthRequired
public java.lang.Number getDepth();
- Type: java.lang.Number
Indicates the depth of the node relative to root (0).
idRequired
public java.lang.String getId();
- Type: java.lang.String
Node id, which is only unique within parent scope.
isAssetRequired
public java.lang.Boolean getIsAsset();
- Type: java.lang.Boolean
Indicates if this node is considered a {@link FlagEnum.ASSET}.
isCfnFqnRequired
public java.lang.Boolean getIsCfnFqn();
- Type: java.lang.Boolean
Indicates if node ConstructInfoFqn denotes a aws-cdk-lib.*.Cfn* construct.
isClusterRequired
public java.lang.Boolean getIsCluster();
- Type: java.lang.Boolean
Indicates if this node is considered a {@link FlagEnum.CLUSTER}.
isCustomResourceRequired
public java.lang.Boolean getIsCustomResource();
- Type: java.lang.Boolean
Indicates if node is a Custom Resource.
isExtraneousRequired
public java.lang.Boolean getIsExtraneous();
- Type: java.lang.Boolean
Indicates if this node is considered a {@link FlagEnum.EXTRANEOUS} node or determined to be extraneous: - Clusters that contain no children.
isGraphContainerRequired
public java.lang.Boolean getIsGraphContainer();
- Type: java.lang.Boolean
Indicates if this node is considered a {@link FlagEnum.GRAPH_CONTAINER}.
isLeafRequired
public java.lang.Boolean getIsLeaf();
- Type: java.lang.Boolean
Indicates if this node is a leaf node, which means it does not have children.
isTopLevelRequired
public java.lang.Boolean getIsTopLevel();
- Type: java.lang.Boolean
Indicates if node is direct child of the graph root node.
linksRequired
public java.util.List<Edge> getLinks();
- Type: java.util.List<Edge>
Gets all links (edges) in which this node is the source.
nodeTypeRequired
public NodeTypeEnum getNodeType();
- Type: NodeTypeEnum
Type of node.
pathRequired
public java.lang.String getPath();
- Type: java.lang.String
Path of the node.
referencedByRequired
public java.util.List<Node> getReferencedBy();
- Type: java.util.List<Node>
Get list of Nodes that reference this node.
referenceLinksRequired
public java.util.List<Reference> getReferenceLinks();
- Type: java.util.List<Reference>
Gets list of {@link Reference} links (edges) where this node is the source.
referencesRequired
public java.util.List<Node> getReferences();
- Type: java.util.List<Node>
Get list of Nodes that this node references.
reverseDependencyLinksRequired
public java.util.List<Dependency> getReverseDependencyLinks();
- Type: java.util.List<Dependency>
Gets list of {@link Dependency} links (edges) where this node is the target.
reverseLinksRequired
public java.util.List<Edge> getReverseLinks();
- Type: java.util.List<Edge>
Gets all links (edges) in which this node is the target.
reverseReferenceLinksRequired
public java.util.List<Reference> getReverseReferenceLinks();
- Type: java.util.List<Reference>
Gets list of {@link Reference} links (edges) where this node is the target.
scopesRequired
public java.util.List<Node> getScopes();
- Type: java.util.List<Node>
Gets descending ordered list of ancestors from the root.
siblingsRequired
public java.util.List<Node> getSiblings();
- Type: java.util.List<Node>
Get list of siblings of this node.
cfnPropsOptional
public PlainObject getCfnProps();
- Type: PlainObject
Get the cfn properties from the L1 resource that this L2 resource wraps.
cfnTypeOptional
public java.lang.String getCfnType();
- Type: java.lang.String
Get the CloudFormation resource type for this L2 resource or for the L1 resource is wraps.
constructInfoOptional
public ConstructInfo getConstructInfo();
- Type: ConstructInfo
Synthesized construct information defining jii resolution data.
constructInfoFqnOptional
public java.lang.String getConstructInfoFqn();
- Type: java.lang.String
Synthesized construct information defining jii resolution data.
logicalIdOptional
public java.lang.String getLogicalId();
- Type: java.lang.String
Logical id of the node, which is only unique within containing stack.
parentOptional
public Node getParent();
- Type: Node
Parent node.
Only the root node should not have parent.
rootStackOptional
public StackNode getRootStack();
- Type: StackNode
Get root stack.
stackOptional
public StackNode getStack();
- Type: StackNode
Stack the node is contained in.
isCdkOwnedRequired
public java.lang.Boolean getIsCdkOwned();
- Type: java.lang.Boolean
Indicates if this resource is owned by cdk (defined in cdk library).
isWrapperRequired
public java.lang.Boolean getIsWrapper();
- Type: java.lang.Boolean
Indicates if Resource wraps a single CfnResource.
cfnResourceOptional
public CfnResourceNode getCfnResource();
- Type: CfnResourceNode
Get the default/primary CfnResource that this Resource wraps.
Constants
| Name | Type | Description |
|---|---|---|
ATT_WRAPPED_CFN_PROPS |
java.lang.String |
Attribute key for cfn properties. |
ATT_WRAPPED_CFN_TYPE |
java.lang.String |
Attribute key for cfn resource type. |
ATT_WRAPPED_CFN_PROPSRequired
public java.lang.String getAttWrappedCfnProps();
- Type: java.lang.String
Attribute key for cfn properties.
ATT_WRAPPED_CFN_TYPERequired
public java.lang.String getAttWrappedCfnType();
- Type: java.lang.String
Attribute key for cfn resource type.
RootNode
RootNode represents the root of the store tree.
Initializers
import software.aws.pdk.cdk_graph.RootNode;
new RootNode(Store store);
| Name | Type | Description |
|---|---|---|
store |
Store |
Reference to the store. |
storeRequired
- Type: Store
Reference to the store.
Methods
| Name | Description |
|---|---|
addAttribute |
Add attribute. |
addFlag |
Add flag. |
addMetadata |
Add metadata entry. |
addTag |
Add tag. |
applyData |
Applies data (attributes, metadata, tags, flag) to entity. |
findMetadata |
Retrieves all metadata entries of a given type. |
getAttribute |
Get attribute by key. |
getTag |
Get tag by key. |
hasAttribute |
Indicates if entity has a given attribute defined, and optionally with a specific value. |
hasFlag |
Indicates if entity has a given flag. |
hasMetadata |
Indicates if entity has matching metadata entry. |
hasTag |
Indicates if entity has tag, optionally verifying tag value. |
mutateDestroy |
Destroys this node by removing all references and removing this node from the store. |
setAttribute |
Set attribute. |
setTag |
Set tag. |
addChild |
Add child node. |
addLink |
Add link to another node. |
addReverseLink |
Add link from another node. |
doesDependOn |
Indicates if this node depends on another node. |
doesReference |
Indicates if this node references another node. |
find |
Recursively find the nearest sub-node matching predicate. |
findAll |
Return this construct and all of its sub-nodes in the given order. |
findAllLinks |
Return all direct links of this node and that of all sub-nodes. |
findAncestor |
Find nearest ancestor of this node matching given predicate. |
findChild |
Find child with given id. |
findLink |
Find link of this node based on predicate. |
findLinks |
Find all links of this node based on predicate. |
getCfnProp |
Get specific CloudFormation property. |
getChild |
Get child node with given id. |
getLinkChains |
Resolve all link chains. |
getNearestAncestor |
Gets the nearest common ancestor shared between this node and another node. |
isAncestor |
Indicates if a specific node is an ancestor of this node. |
isChild |
Indicates if specific node is a child of this node. |
mutateCollapse |
Collapses all sub-nodes of this node into this node. |
mutateCollapseTo |
Collapses this node into an ancestor > {@link RootNode} does not support this mutation. |
mutateCollapseToParent |
Collapses this node into it's parent node > {@link RootNode} does not support this mutation. |
mutateHoist |
Hoist this node to an ancestor by removing it from its current parent node and in turn moving it to the ancestor. |
mutateMove |
Move this node into a new parent node. |
mutateRemoveChild |
Remove a child node from this node. |
mutateRemoveLink |
Remove a link from this node. |
mutateRemoveReverseLink |
Remove a link to this node. |
mutateUncluster |
Hoist all children to parent and collapse node to parent. |
toString |
Get string representation of this node. |
addAttribute
public void addAttribute(java.lang.String key, java.lang.Object value)
Add attribute.
keyRequired
- Type: java.lang.String
valueRequired
- Type: java.lang.Object
addFlag
public void addFlag(FlagEnum flag)
Add flag.
flagRequired
- Type: FlagEnum
addMetadata
public void addMetadata(java.lang.String metadataType, java.lang.Object data)
Add metadata entry.
metadataTypeRequired
- Type: java.lang.String
dataRequired
- Type: java.lang.Object
addTag
public void addTag(java.lang.String key, java.lang.String value)
Add tag.
keyRequired
- Type: java.lang.String
valueRequired
- Type: java.lang.String
applyData
public void applyData(IBaseEntityDataProps data)
public void applyData(IBaseEntityDataProps data, java.lang.Boolean overwrite)
public void applyData(IBaseEntityDataProps data, java.lang.Boolean overwrite, java.lang.Boolean applyFlags)
Applies data (attributes, metadata, tags, flag) to entity.
Generally used only for mutations such as collapse and consume to retain data.
dataRequired
- Type: IBaseEntityDataProps
The data to apply.
overwriteOptional
- Type: java.lang.Boolean
applyFlagsOptional
- Type: java.lang.Boolean
Indicates if data is overwritten - Indicates if flags should be applied.
findMetadata
public java.util.List<MetadataEntry> findMetadata(java.lang.String metadataType)
Retrieves all metadata entries of a given type.
metadataTypeRequired
- Type: java.lang.String
getAttribute
public java.lang.Object getAttribute(java.lang.String key)
Get attribute by key.
keyRequired
- Type: java.lang.String
getTag
public java.lang.String getTag(java.lang.String key)
Get tag by key.
keyRequired
- Type: java.lang.String
hasAttribute
public java.lang.Boolean hasAttribute(java.lang.String key)
public java.lang.Boolean hasAttribute(java.lang.String key, java.lang.Object value)
Indicates if entity has a given attribute defined, and optionally with a specific value.
keyRequired
- Type: java.lang.String
valueOptional
- Type: java.lang.Object
hasFlag
public java.lang.Boolean hasFlag(FlagEnum flag)
Indicates if entity has a given flag.
flagRequired
- Type: FlagEnum
hasMetadata
public java.lang.Boolean hasMetadata(java.lang.String metadataType, java.lang.Object data)
Indicates if entity has matching metadata entry.
metadataTypeRequired
- Type: java.lang.String
dataRequired
- Type: java.lang.Object
hasTag
public java.lang.Boolean hasTag(java.lang.String key)
public java.lang.Boolean hasTag(java.lang.String key, java.lang.String value)
Indicates if entity has tag, optionally verifying tag value.
keyRequired
- Type: java.lang.String
valueOptional
- Type: java.lang.String
mutateDestroy
public void mutateDestroy()
public void mutateDestroy(java.lang.Boolean _strict)
Destroys this node by removing all references and removing this node from the store.
{@link RootNode} does not support this mutation
_strictOptional
- Type: java.lang.Boolean
setAttribute
public void setAttribute(java.lang.String key, java.lang.Object value)
Set attribute.
This will overwrite existing attribute.
keyRequired
- Type: java.lang.String
valueRequired
- Type: java.lang.Object
setTag
public void setTag(java.lang.String key, java.lang.String value)
Set tag.
Will overwrite existing tag.
keyRequired
- Type: java.lang.String
valueRequired
- Type: java.lang.String
addChild
public void addChild(Node node)
Add child node.
nodeRequired
- Type: Node
addLink
public void addLink(Edge edge)
Add link to another node.
edgeRequired
- Type: Edge
addReverseLink
public void addReverseLink(Edge edge)
Add link from another node.
edgeRequired
- Type: Edge
doesDependOn
public java.lang.Boolean doesDependOn(Node node)
Indicates if this node depends on another node.
nodeRequired
- Type: Node
doesReference
public java.lang.Boolean doesReference(Node node)
Indicates if this node references another node.
nodeRequired
- Type: Node
find
public Node find(INodePredicate predicate)
Recursively find the nearest sub-node matching predicate.
predicateRequired
- Type: INodePredicate
findAll
public java.util.List<Node> findAll()
public java.util.List<Node> findAll(IFindNodeOptions options)
Return this construct and all of its sub-nodes in the given order.
Optionally filter nodes based on predicate. The root not is excluded from list
optionsOptional
- Type: IFindNodeOptions
findAllLinks
public java.util.List<Edge> findAllLinks()
public java.util.List<Edge> findAllLinks(IFindEdgeOptions options)
Return all direct links of this node and that of all sub-nodes.
Optionally filter links based on predicate.
optionsOptional
- Type: IFindEdgeOptions
findAncestor
public Node findAncestor(INodePredicate predicate)
public Node findAncestor(INodePredicate predicate, java.lang.Number max)
Find nearest ancestor of this node matching given predicate.
predicateRequired
- Type: INodePredicate
Predicate to match ancestor.
maxOptional
- Type: java.lang.Number
findChild
public Node findChild(java.lang.String id)
Find child with given id.
Similar to find but does not throw error if no child found.
idRequired
- Type: java.lang.String
findLink
public Edge findLink(IEdgePredicate predicate)
public Edge findLink(IEdgePredicate predicate, java.lang.Boolean reverse)
public Edge findLink(IEdgePredicate predicate, java.lang.Boolean reverse, java.lang.Boolean follow)
public Edge findLink(IEdgePredicate predicate, java.lang.Boolean reverse, java.lang.Boolean follow, java.lang.Boolean direct)
Find link of this node based on predicate.
By default this will follow link chains to evaluate the predicate against and return the matching direct link of this node.
predicateRequired
- Type: IEdgePredicate
Edge predicate function to match edge.
reverseOptional
- Type: java.lang.Boolean
Indicates if links are search in reverse order.
followOptional
- Type: java.lang.Boolean
Indicates if link chain is followed.
directOptional
- Type: java.lang.Boolean
Indicates that only direct links should be searched.
findLinks
public java.util.List<Edge> findLinks(IEdgePredicate predicate)
public java.util.List<Edge> findLinks(IEdgePredicate predicate, java.lang.Boolean reverse)
public java.util.List<Edge> findLinks(IEdgePredicate predicate, java.lang.Boolean reverse, java.lang.Boolean follow)
public java.util.List<Edge> findLinks(IEdgePredicate predicate, java.lang.Boolean reverse, java.lang.Boolean follow, java.lang.Boolean direct)
Find all links of this node based on predicate.
By default this will follow link chains to evaluate the predicate against and return the matching direct links of this node.
predicateRequired
- Type: IEdgePredicate
Edge predicate function to match edge.
reverseOptional
- Type: java.lang.Boolean
Indicates if links are search in reverse order.
followOptional
- Type: java.lang.Boolean
Indicates if link chain is followed.
directOptional
- Type: java.lang.Boolean
Indicates that only direct links should be searched.
getCfnProp
public java.lang.String OR java.lang.Number OR java.lang.Boolean OR PlainObject OR java.util.List<java.lang.String OR java.lang.Number OR java.lang.Boolean OR PlainObject> getCfnProp(java.lang.String key)
Get specific CloudFormation property.
keyRequired
- Type: java.lang.String
getChild
public Node getChild(java.lang.String id)
Get child node with given id.
idRequired
- Type: java.lang.String
getLinkChains
public java.util.List<java.util.List<java.lang.Object>> getLinkChains()
public java.util.List<java.util.List<java.lang.Object>> getLinkChains(java.lang.Boolean reverse)
Resolve all link chains.
reverseOptional
- Type: java.lang.Boolean
getNearestAncestor
public Node getNearestAncestor(Node node)
Gets the nearest common ancestor shared between this node and another node.
nodeRequired
- Type: Node
isAncestor
public java.lang.Boolean isAncestor(Node ancestor)
Indicates if a specific node is an ancestor of this node.
ancestorRequired
- Type: Node
isChild
public java.lang.Boolean isChild(Node node)
Indicates if specific node is a child of this node.
nodeRequired
- Type: Node
mutateCollapse
public void mutateCollapse()
Collapses all sub-nodes of this node into this node.
{@link RootNode} does not support this mutation
mutateCollapseTo
public Node mutateCollapseTo(Node _ancestor)
Collapses this node into an ancestor > {@link RootNode} does not support this mutation.
_ancestorRequired
- Type: Node
mutateCollapseToParent
public Node mutateCollapseToParent()
Collapses this node into it's parent node > {@link RootNode} does not support this mutation.
mutateHoist
public void mutateHoist(Node _newParent)
Hoist this node to an ancestor by removing it from its current parent node and in turn moving it to the ancestor.
{@link RootNode} does not support this mutation
_newParentRequired
- Type: Node
mutateMove
public void mutateMove(Node newParent)
Move this node into a new parent node.
newParentRequired
- Type: Node
The parent to move this node to.
mutateRemoveChild
public java.lang.Boolean mutateRemoveChild(Node node)
Remove a child node from this node.
nodeRequired
- Type: Node
mutateRemoveLink
public java.lang.Boolean mutateRemoveLink(Edge link)
Remove a link from this node.
linkRequired
- Type: Edge
mutateRemoveReverseLink
public java.lang.Boolean mutateRemoveReverseLink(Edge link)
Remove a link to this node.
linkRequired
- Type: Edge
mutateUncluster
public void mutateUncluster()
Hoist all children to parent and collapse node to parent.
toString
public java.lang.String toString()
Get string representation of this node.
Static Functions
| Name | Description |
|---|---|
isRootNode |
Indicates if node is a {@link RootNode}. |
isRootNode
import software.aws.pdk.cdk_graph.RootNode;
RootNode.isRootNode(Node node)
Indicates if node is a {@link RootNode}.
nodeRequired
- Type: Node
Properties
| Name | Type | Description |
|---|---|---|
attributes |
java.util.Map |
Get readonly record of all attributes. |
flags |
java.util.List<FlagEnum> |
Get readonly list of all flags. |
isDestroyed |
java.lang.Boolean |
Indicates if the entity has been destroyed (eg: removed from store). |
isMutated |
java.lang.Boolean |
Indicates if the entity has had destructive mutations applied. |
metadata |
java.util.List |
Get readonly list of all metadata entries. |
store |
Store |
Reference to the store. |
tags |
java.util.Map |
Get readonly record of all tags. |
uuid |
java.lang.String |
Universally unique identifier. |
allowDestructiveMutations |
java.lang.Boolean |
Indicates if this node allows destructive mutations. |
children |
java.util.List<Node> |
Get all direct child nodes. |
dependedOnBy |
java.util.List<Node> |
Get list of Nodes that depend on this node. |
dependencies |
java.util.List<Node> |
Get list of Nodes that this node depends on. |
dependencyLinks |
java.util.List<Dependency> |
Gets list of {@link Dependency} links (edges) where this node is the source. |
depth |
java.lang.Number |
Indicates the depth of the node relative to root (0). |
id |
java.lang.String |
Node id, which is only unique within parent scope. |
isAsset |
java.lang.Boolean |
Indicates if this node is considered a {@link FlagEnum.ASSET}. |
isCfnFqn |
java.lang.Boolean |
Indicates if node ConstructInfoFqn denotes a aws-cdk-lib.*.Cfn* construct. |
isCluster |
java.lang.Boolean |
Indicates if this node is considered a {@link FlagEnum.CLUSTER}. |
isCustomResource |
java.lang.Boolean |
Indicates if node is a Custom Resource. |
isExtraneous |
java.lang.Boolean |
Indicates if this node is considered a {@link FlagEnum.EXTRANEOUS} node or determined to be extraneous: - Clusters that contain no children. |
isGraphContainer |
java.lang.Boolean |
Indicates if this node is considered a {@link FlagEnum.GRAPH_CONTAINER}. |
isLeaf |
java.lang.Boolean |
Indicates if this node is a leaf node, which means it does not have children. |
isTopLevel |
java.lang.Boolean |
Indicates if node is direct child of the graph root node. |
links |
java.util.List<Edge> |
Gets all links (edges) in which this node is the source. |
nodeType |
NodeTypeEnum |
Type of node. |
path |
java.lang.String |
Path of the node. |
referencedBy |
java.util.List<Node> |
Get list of Nodes that reference this node. |
referenceLinks |
java.util.List<Reference> |
Gets list of {@link Reference} links (edges) where this node is the source. |
references |
java.util.List<Node> |
Get list of Nodes that this node references. |
reverseDependencyLinks |
java.util.List<Dependency> |
Gets list of {@link Dependency} links (edges) where this node is the target. |
reverseLinks |
java.util.List<Edge> |
Gets all links (edges) in which this node is the target. |
reverseReferenceLinks |
java.util.List<Reference> |
Gets list of {@link Reference} links (edges) where this node is the target. |
scopes |
java.util.List<Node> |
Gets descending ordered list of ancestors from the root. |
siblings |
java.util.List<Node> |
Get list of siblings of this node. |
cfnProps |
PlainObject |
Gets CloudFormation properties for this node. |
cfnType |
java.lang.String |
Get the CloudFormation resource type for this node. |
constructInfo |
ConstructInfo |
Synthesized construct information defining jii resolution data. |
constructInfoFqn |
java.lang.String |
Synthesized construct information defining jii resolution data. |
logicalId |
java.lang.String |
Logical id of the node, which is only unique within containing stack. |
parent |
Node |
Parent node. |
rootStack |
StackNode |
Get root stack. |
stack |
StackNode |
Stack the node is contained in. |
attributesRequired
public java.lang.Object getAttributes();
- Type: java.util.Map
PlainObject\ OR java.util.List\ PlainObject\>>
Get readonly record of all attributes.
flagsRequired
public java.util.List<FlagEnum> getFlags();
- Type: java.util.List<FlagEnum>
Get readonly list of all flags.
isDestroyedRequired
public java.lang.Boolean getIsDestroyed();
- Type: java.lang.Boolean
Indicates if the entity has been destroyed (eg: removed from store).
isMutatedRequired
public java.lang.Boolean getIsMutated();
- Type: java.lang.Boolean
Indicates if the entity has had destructive mutations applied.
metadataRequired
public java.util.List<MetadataEntry> getMetadata();
- Type: java.util.List
Get readonly list of all metadata entries.
storeRequired
public Store getStore();
- Type: Store
Reference to the store.
tagsRequired
public java.util.Map<java.lang.String, java.lang.String> getTags();
- Type: java.util.Map
Get readonly record of all tags.
uuidRequired
public java.lang.String getUuid();
- Type: java.lang.String
Universally unique identifier.
allowDestructiveMutationsRequired
public java.lang.Boolean getAllowDestructiveMutations();
- Type: java.lang.Boolean
Indicates if this node allows destructive mutations.
childrenRequired
public java.util.List<Node> getChildren();
- Type: java.util.List<Node>
Get all direct child nodes.
dependedOnByRequired
public java.util.List<Node> getDependedOnBy();
- Type: java.util.List<Node>
Get list of Nodes that depend on this node.
dependenciesRequired
public java.util.List<Node> getDependencies();
- Type: java.util.List<Node>
Get list of Nodes that this node depends on.
dependencyLinksRequired
public java.util.List<Dependency> getDependencyLinks();
- Type: java.util.List<Dependency>
Gets list of {@link Dependency} links (edges) where this node is the source.
depthRequired
public java.lang.Number getDepth();
- Type: java.lang.Number
Indicates the depth of the node relative to root (0).
idRequired
public java.lang.String getId();
- Type: java.lang.String
Node id, which is only unique within parent scope.
isAssetRequired
public java.lang.Boolean getIsAsset();
- Type: java.lang.Boolean
Indicates if this node is considered a {@link FlagEnum.ASSET}.
isCfnFqnRequired
public java.lang.Boolean getIsCfnFqn();
- Type: java.lang.Boolean
Indicates if node ConstructInfoFqn denotes a aws-cdk-lib.*.Cfn* construct.
isClusterRequired
public java.lang.Boolean getIsCluster();
- Type: java.lang.Boolean
Indicates if this node is considered a {@link FlagEnum.CLUSTER}.
isCustomResourceRequired
public java.lang.Boolean getIsCustomResource();
- Type: java.lang.Boolean
Indicates if node is a Custom Resource.
isExtraneousRequired
public java.lang.Boolean getIsExtraneous();
- Type: java.lang.Boolean
Indicates if this node is considered a {@link FlagEnum.EXTRANEOUS} node or determined to be extraneous: - Clusters that contain no children.
isGraphContainerRequired
public java.lang.Boolean getIsGraphContainer();
- Type: java.lang.Boolean
Indicates if this node is considered a {@link FlagEnum.GRAPH_CONTAINER}.
isLeafRequired
public java.lang.Boolean getIsLeaf();
- Type: java.lang.Boolean
Indicates if this node is a leaf node, which means it does not have children.
isTopLevelRequired
public java.lang.Boolean getIsTopLevel();
- Type: java.lang.Boolean
Indicates if node is direct child of the graph root node.
linksRequired
public java.util.List<Edge> getLinks();
- Type: java.util.List<Edge>
Gets all links (edges) in which this node is the source.
nodeTypeRequired
public NodeTypeEnum getNodeType();
- Type: NodeTypeEnum
Type of node.
pathRequired
public java.lang.String getPath();
- Type: java.lang.String
Path of the node.
referencedByRequired
public java.util.List<Node> getReferencedBy();
- Type: java.util.List<Node>
Get list of Nodes that reference this node.
referenceLinksRequired
public java.util.List<Reference> getReferenceLinks();
- Type: java.util.List<Reference>
Gets list of {@link Reference} links (edges) where this node is the source.
referencesRequired
public java.util.List<Node> getReferences();
- Type: java.util.List<Node>
Get list of Nodes that this node references.
reverseDependencyLinksRequired
public java.util.List<Dependency> getReverseDependencyLinks();
- Type: java.util.List<Dependency>
Gets list of {@link Dependency} links (edges) where this node is the target.
reverseLinksRequired
public java.util.List<Edge> getReverseLinks();
- Type: java.util.List<Edge>
Gets all links (edges) in which this node is the target.
reverseReferenceLinksRequired
public java.util.List<Reference> getReverseReferenceLinks();
- Type: java.util.List<Reference>
Gets list of {@link Reference} links (edges) where this node is the target.
scopesRequired
public java.util.List<Node> getScopes();
- Type: java.util.List<Node>
Gets descending ordered list of ancestors from the root.
siblingsRequired
public java.util.List<Node> getSiblings();
- Type: java.util.List<Node>
Get list of siblings of this node.
cfnPropsOptional
public PlainObject getCfnProps();
- Type: PlainObject
Gets CloudFormation properties for this node.
cfnTypeOptional
public java.lang.String getCfnType();
- Type: java.lang.String
Get the CloudFormation resource type for this node.
constructInfoOptional
public ConstructInfo getConstructInfo();
- Type: ConstructInfo
Synthesized construct information defining jii resolution data.
constructInfoFqnOptional
public java.lang.String getConstructInfoFqn();
- Type: java.lang.String
Synthesized construct information defining jii resolution data.
logicalIdOptional
public java.lang.String getLogicalId();
- Type: java.lang.String
Logical id of the node, which is only unique within containing stack.
parentOptional
public Node getParent();
- Type: Node
Parent node.
Only the root node should not have parent.
rootStackOptional
public StackNode getRootStack();
- Type: StackNode
Get root stack.
stackOptional
public StackNode getStack();
- Type: StackNode
Stack the node is contained in.
Constants
| Name | Type | Description |
|---|---|---|
PATH |
java.lang.String |
Fixed path of root. |
UUID |
java.lang.String |
Fixed UUID of root. |
PATHRequired
public java.lang.String getPath();
- Type: java.lang.String
Fixed path of root.
UUIDRequired
public java.lang.String getUuid();
- Type: java.lang.String
Fixed UUID of root.
StackNode
StackNode defines a cdk Stack.
Initializers
import software.aws.pdk.cdk_graph.StackNode;
new StackNode(IStackNodeProps props);
| Name | Type | Description |
|---|---|---|
props |
IStackNodeProps |
No description. |
propsRequired
- Type: IStackNodeProps
Methods
| Name | Description |
|---|---|
addAttribute |
Add attribute. |
addFlag |
Add flag. |
addMetadata |
Add metadata entry. |
addTag |
Add tag. |
applyData |
Applies data (attributes, metadata, tags, flag) to entity. |
findMetadata |
Retrieves all metadata entries of a given type. |
getAttribute |
Get attribute by key. |
getTag |
Get tag by key. |
hasAttribute |
Indicates if entity has a given attribute defined, and optionally with a specific value. |
hasFlag |
Indicates if entity has a given flag. |
hasMetadata |
Indicates if entity has matching metadata entry. |
hasTag |
Indicates if entity has tag, optionally verifying tag value. |
mutateDestroy |
Destroys this node by removing all references and removing this node from the store. |
setAttribute |
Set attribute. |
setTag |
Set tag. |
addChild |
Add child node. |
addLink |
Add link to another node. |
addReverseLink |
Add link from another node. |
doesDependOn |
Indicates if this node depends on another node. |
doesReference |
Indicates if this node references another node. |
find |
Recursively find the nearest sub-node matching predicate. |
findAll |
Return this construct and all of its sub-nodes in the given order. |
findAllLinks |
Return all direct links of this node and that of all sub-nodes. |
findAncestor |
Find nearest ancestor of this node matching given predicate. |
findChild |
Find child with given id. |
findLink |
Find link of this node based on predicate. |
findLinks |
Find all links of this node based on predicate. |
getCfnProp |
Get specific CloudFormation property. |
getChild |
Get child node with given id. |
getLinkChains |
Resolve all link chains. |
getNearestAncestor |
Gets the nearest common ancestor shared between this node and another node. |
isAncestor |
Indicates if a specific node is an ancestor of this node. |
isChild |
Indicates if specific node is a child of this node. |
mutateCollapse |
Collapses all sub-nodes of this node into this node. |
mutateCollapseTo |
Collapses this node into an ancestor. |
mutateCollapseToParent |
Collapses this node into it's parent node. |
mutateHoist |
Hoist this node to an ancestor by removing it from its current parent node and in turn moving it to the ancestor. |
mutateMove |
Move this node into a new parent node. |
mutateRemoveChild |
Remove a child node from this node. |
mutateRemoveLink |
Remove a link from this node. |
mutateRemoveReverseLink |
Remove a link to this node. |
mutateUncluster |
Hoist all children to parent and collapse node to parent. |
toString |
Get string representation of this node. |
addOutput |
Associate {@link OutputNode} with this stack. |
addParameter |
Associate {@link ParameterNode} with this stack. |
findOutput |
Find {@link OutputNode} with logicalId defined by this stack. |
findParameter |
Find {@link ParameterNode} with parameterId defined by this stack. |
mutateRemoveOutput |
Disassociate {@link OutputNode} from this stack. |
mutateRemoveParameter |
Disassociate {@link ParameterNode} from this stack. |
addAttribute
public void addAttribute(java.lang.String key, java.lang.Object value)
Add attribute.
keyRequired
- Type: java.lang.String
valueRequired
- Type: java.lang.Object
addFlag
public void addFlag(FlagEnum flag)
Add flag.
flagRequired
- Type: FlagEnum
addMetadata
public void addMetadata(java.lang.String metadataType, java.lang.Object data)
Add metadata entry.
metadataTypeRequired
- Type: java.lang.String
dataRequired
- Type: java.lang.Object
addTag
public void addTag(java.lang.String key, java.lang.String value)
Add tag.
keyRequired
- Type: java.lang.String
valueRequired
- Type: java.lang.String
applyData
public void applyData(IBaseEntityDataProps data)
public void applyData(IBaseEntityDataProps data, java.lang.Boolean overwrite)
public void applyData(IBaseEntityDataProps data, java.lang.Boolean overwrite, java.lang.Boolean applyFlags)
Applies data (attributes, metadata, tags, flag) to entity.
Generally used only for mutations such as collapse and consume to retain data.
dataRequired
- Type: IBaseEntityDataProps
The data to apply.
overwriteOptional
- Type: java.lang.Boolean
applyFlagsOptional
- Type: java.lang.Boolean
Indicates if data is overwritten - Indicates if flags should be applied.
findMetadata
public java.util.List<MetadataEntry> findMetadata(java.lang.String metadataType)
Retrieves all metadata entries of a given type.
metadataTypeRequired
- Type: java.lang.String
getAttribute
public java.lang.Object getAttribute(java.lang.String key)
Get attribute by key.
keyRequired
- Type: java.lang.String
getTag
public java.lang.String getTag(java.lang.String key)
Get tag by key.
keyRequired
- Type: java.lang.String
hasAttribute
public java.lang.Boolean hasAttribute(java.lang.String key)
public java.lang.Boolean hasAttribute(java.lang.String key, java.lang.Object value)
Indicates if entity has a given attribute defined, and optionally with a specific value.
keyRequired
- Type: java.lang.String
valueOptional
- Type: java.lang.Object
hasFlag
public java.lang.Boolean hasFlag(FlagEnum flag)
Indicates if entity has a given flag.
flagRequired
- Type: FlagEnum
hasMetadata
public java.lang.Boolean hasMetadata(java.lang.String metadataType, java.lang.Object data)
Indicates if entity has matching metadata entry.
metadataTypeRequired
- Type: java.lang.String
dataRequired
- Type: java.lang.Object
hasTag
public java.lang.Boolean hasTag(java.lang.String key)
public java.lang.Boolean hasTag(java.lang.String key, java.lang.String value)
Indicates if entity has tag, optionally verifying tag value.
keyRequired
- Type: java.lang.String
valueOptional
- Type: java.lang.String
mutateDestroy
public void mutateDestroy()
public void mutateDestroy(java.lang.Boolean strict)
Destroys this node by removing all references and removing this node from the store.
strictOptional
- Type: java.lang.Boolean
setAttribute
public void setAttribute(java.lang.String key, java.lang.Object value)
Set attribute.
This will overwrite existing attribute.
keyRequired
- Type: java.lang.String
valueRequired
- Type: java.lang.Object
setTag
public void setTag(java.lang.String key, java.lang.String value)
Set tag.
Will overwrite existing tag.
keyRequired
- Type: java.lang.String
valueRequired
- Type: java.lang.String
addChild
public void addChild(Node node)
Add child node.
nodeRequired
- Type: Node
addLink
public void addLink(Edge edge)
Add link to another node.
edgeRequired
- Type: Edge
addReverseLink
public void addReverseLink(Edge edge)
Add link from another node.
edgeRequired
- Type: Edge
doesDependOn
public java.lang.Boolean doesDependOn(Node node)
Indicates if this node depends on another node.
nodeRequired
- Type: Node
doesReference
public java.lang.Boolean doesReference(Node node)
Indicates if this node references another node.
nodeRequired
- Type: Node
find
public Node find(INodePredicate predicate)
Recursively find the nearest sub-node matching predicate.
predicateRequired
- Type: INodePredicate
findAll
public java.util.List<Node> findAll()
public java.util.List<Node> findAll(IFindNodeOptions options)
Return this construct and all of its sub-nodes in the given order.
Optionally filter nodes based on predicate.
optionsOptional
- Type: IFindNodeOptions
findAllLinks
public java.util.List<Edge> findAllLinks()
public java.util.List<Edge> findAllLinks(IFindEdgeOptions options)
Return all direct links of this node and that of all sub-nodes.
Optionally filter links based on predicate.
optionsOptional
- Type: IFindEdgeOptions
findAncestor
public Node findAncestor(INodePredicate predicate)
public Node findAncestor(INodePredicate predicate, java.lang.Number max)
Find nearest ancestor of this node matching given predicate.
predicateRequired
- Type: INodePredicate
Predicate to match ancestor.
maxOptional
- Type: java.lang.Number
findChild
public Node findChild(java.lang.String id)
Find child with given id.
Similar to find but does not throw error if no child found.
idRequired
- Type: java.lang.String
findLink
public Edge findLink(IEdgePredicate predicate)
public Edge findLink(IEdgePredicate predicate, java.lang.Boolean reverse)
public Edge findLink(IEdgePredicate predicate, java.lang.Boolean reverse, java.lang.Boolean follow)
public Edge findLink(IEdgePredicate predicate, java.lang.Boolean reverse, java.lang.Boolean follow, java.lang.Boolean direct)
Find link of this node based on predicate.
By default this will follow link chains to evaluate the predicate against and return the matching direct link of this node.
predicateRequired
- Type: IEdgePredicate
Edge predicate function to match edge.
reverseOptional
- Type: java.lang.Boolean
Indicates if links are search in reverse order.
followOptional
- Type: java.lang.Boolean
Indicates if link chain is followed.
directOptional
- Type: java.lang.Boolean
Indicates that only direct links should be searched.
findLinks
public java.util.List<Edge> findLinks(IEdgePredicate predicate)
public java.util.List<Edge> findLinks(IEdgePredicate predicate, java.lang.Boolean reverse)
public java.util.List<Edge> findLinks(IEdgePredicate predicate, java.lang.Boolean reverse, java.lang.Boolean follow)
public java.util.List<Edge> findLinks(IEdgePredicate predicate, java.lang.Boolean reverse, java.lang.Boolean follow, java.lang.Boolean direct)
Find all links of this node based on predicate.
By default this will follow link chains to evaluate the predicate against and return the matching direct links of this node.
predicateRequired
- Type: IEdgePredicate
Edge predicate function to match edge.
reverseOptional
- Type: java.lang.Boolean
Indicates if links are search in reverse order.
followOptional
- Type: java.lang.Boolean
Indicates if link chain is followed.
directOptional
- Type: java.lang.Boolean
Indicates that only direct links should be searched.
getCfnProp
public java.lang.String OR java.lang.Number OR java.lang.Boolean OR PlainObject OR java.util.List<java.lang.String OR java.lang.Number OR java.lang.Boolean OR PlainObject> getCfnProp(java.lang.String key)
Get specific CloudFormation property.
keyRequired
- Type: java.lang.String
getChild
public Node getChild(java.lang.String id)
Get child node with given id.
idRequired
- Type: java.lang.String
getLinkChains
public java.util.List<java.util.List<java.lang.Object>> getLinkChains()
public java.util.List<java.util.List<java.lang.Object>> getLinkChains(java.lang.Boolean reverse)
Resolve all link chains.
reverseOptional
- Type: java.lang.Boolean
getNearestAncestor
public Node getNearestAncestor(Node node)
Gets the nearest common ancestor shared between this node and another node.
nodeRequired
- Type: Node
isAncestor
public java.lang.Boolean isAncestor(Node ancestor)
Indicates if a specific node is an ancestor of this node.
ancestorRequired
- Type: Node
isChild
public java.lang.Boolean isChild(Node node)
Indicates if specific node is a child of this node.
nodeRequired
- Type: Node
mutateCollapse
public void mutateCollapse()
Collapses all sub-nodes of this node into this node.
mutateCollapseTo
public Node mutateCollapseTo(Node ancestor)
Collapses this node into an ancestor.
ancestorRequired
- Type: Node
mutateCollapseToParent
public Node mutateCollapseToParent()
Collapses this node into it's parent node.
mutateHoist
public void mutateHoist(Node newParent)
Hoist this node to an ancestor by removing it from its current parent node and in turn moving it to the ancestor.
newParentRequired
- Type: Node
mutateMove
public void mutateMove(Node newParent)
Move this node into a new parent node.
newParentRequired
- Type: Node
The parent to move this node to.
mutateRemoveChild
public java.lang.Boolean mutateRemoveChild(Node node)
Remove a child node from this node.
nodeRequired
- Type: Node
mutateRemoveLink
public java.lang.Boolean mutateRemoveLink(Edge link)
Remove a link from this node.
linkRequired
- Type: Edge
mutateRemoveReverseLink
public java.lang.Boolean mutateRemoveReverseLink(Edge link)
Remove a link to this node.
linkRequired
- Type: Edge
mutateUncluster
public void mutateUncluster()
Hoist all children to parent and collapse node to parent.
toString
public java.lang.String toString()
Get string representation of this node.
addOutput
public void addOutput(OutputNode node)
Associate {@link OutputNode} with this stack.
nodeRequired
- Type: OutputNode
addParameter
public void addParameter(ParameterNode node)
Associate {@link ParameterNode} with this stack.
nodeRequired
- Type: ParameterNode
findOutput
public OutputNode findOutput(java.lang.String logicalId)
Find {@link OutputNode} with logicalId defined by this stack.
logicalIdRequired
- Type: java.lang.String
findParameter
public ParameterNode findParameter(java.lang.String parameterId)
Find {@link ParameterNode} with parameterId defined by this stack.
parameterIdRequired
- Type: java.lang.String
mutateRemoveOutput
public java.lang.Boolean mutateRemoveOutput(OutputNode node)
Disassociate {@link OutputNode} from this stack.
nodeRequired
- Type: OutputNode
mutateRemoveParameter
public java.lang.Boolean mutateRemoveParameter(ParameterNode node)
Disassociate {@link ParameterNode} from this stack.
nodeRequired
- Type: ParameterNode
Static Functions
| Name | Description |
|---|---|
isStackNode |
Indicates if node is a {@link StackNode}. |
of |
Gets the {@link StackNode} containing a given resource. |
isStackNode
import software.aws.pdk.cdk_graph.StackNode;
StackNode.isStackNode(Node node)
Indicates if node is a {@link StackNode}.
nodeRequired
- Type: Node
of
import software.aws.pdk.cdk_graph.StackNode;
StackNode.of(Node node)
Gets the {@link StackNode} containing a given resource.
nodeRequired
- Type: Node
Properties
| Name | Type | Description |
|---|---|---|
attributes |
java.util.Map |
Get readonly record of all attributes. |
flags |
java.util.List<FlagEnum> |
Get readonly list of all flags. |
isDestroyed |
java.lang.Boolean |
Indicates if the entity has been destroyed (eg: removed from store). |
isMutated |
java.lang.Boolean |
Indicates if the entity has had destructive mutations applied. |
metadata |
java.util.List |
Get readonly list of all metadata entries. |
store |
Store |
Reference to the store. |
tags |
java.util.Map |
Get readonly record of all tags. |
uuid |
java.lang.String |
Universally unique identifier. |
allowDestructiveMutations |
java.lang.Boolean |
Indicates if this node allows destructive mutations. |
children |
java.util.List<Node> |
Get all direct child nodes. |
dependedOnBy |
java.util.List<Node> |
Get list of Nodes that depend on this node. |
dependencies |
java.util.List<Node> |
Get list of Nodes that this node depends on. |
dependencyLinks |
java.util.List<Dependency> |
Gets list of {@link Dependency} links (edges) where this node is the source. |
depth |
java.lang.Number |
Indicates the depth of the node relative to root (0). |
id |
java.lang.String |
Node id, which is only unique within parent scope. |
isAsset |
java.lang.Boolean |
Indicates if this node is considered a {@link FlagEnum.ASSET}. |
isCfnFqn |
java.lang.Boolean |
Indicates if node ConstructInfoFqn denotes a aws-cdk-lib.*.Cfn* construct. |
isCluster |
java.lang.Boolean |
Indicates if this node is considered a {@link FlagEnum.CLUSTER}. |
isCustomResource |
java.lang.Boolean |
Indicates if node is a Custom Resource. |
isExtraneous |
java.lang.Boolean |
Indicates if this node is considered a {@link FlagEnum.EXTRANEOUS} node or determined to be extraneous: - Clusters that contain no children. |
isGraphContainer |
java.lang.Boolean |
Indicates if this node is considered a {@link FlagEnum.GRAPH_CONTAINER}. |
isLeaf |
java.lang.Boolean |
Indicates if this node is a leaf node, which means it does not have children. |
isTopLevel |
java.lang.Boolean |
Indicates if node is direct child of the graph root node. |
links |
java.util.List<Edge> |
Gets all links (edges) in which this node is the source. |
nodeType |
NodeTypeEnum |
Type of node. |
path |
java.lang.String |
Path of the node. |
referencedBy |
java.util.List<Node> |
Get list of Nodes that reference this node. |
referenceLinks |
java.util.List<Reference> |
Gets list of {@link Reference} links (edges) where this node is the source. |
references |
java.util.List<Node> |
Get list of Nodes that this node references. |
reverseDependencyLinks |
java.util.List<Dependency> |
Gets list of {@link Dependency} links (edges) where this node is the target. |
reverseLinks |
java.util.List<Edge> |
Gets all links (edges) in which this node is the target. |
reverseReferenceLinks |
java.util.List<Reference> |
Gets list of {@link Reference} links (edges) where this node is the target. |
scopes |
java.util.List<Node> |
Gets descending ordered list of ancestors from the root. |
siblings |
java.util.List<Node> |
Get list of siblings of this node. |
cfnProps |
PlainObject |
Gets CloudFormation properties for this node. |
cfnType |
java.lang.String |
Get the CloudFormation resource type for this node. |
constructInfo |
ConstructInfo |
Synthesized construct information defining jii resolution data. |
constructInfoFqn |
java.lang.String |
Synthesized construct information defining jii resolution data. |
logicalId |
java.lang.String |
Logical id of the node, which is only unique within containing stack. |
parent |
Node |
Parent node. |
rootStack |
StackNode |
Get root stack. |
stack |
StackNode |
Stack the node is contained in. |
exports |
java.util.List<OutputNode> |
Get all exported {@link OutputNode}s defined by this stack. |
outputs |
java.util.List<OutputNode> |
Get all {@link OutputNode}s defined by this stack. |
parameters |
java.util.List<ParameterNode> |
Get all {@link ParameterNode}s defined by this stack. |
stage |
StageNode |
Get {@link StageNode} containing this stack. |
attributesRequired
public java.lang.Object getAttributes();
- Type: java.util.Map
PlainObject\ OR java.util.List\ PlainObject\>>
Get readonly record of all attributes.
flagsRequired
public java.util.List<FlagEnum> getFlags();
- Type: java.util.List<FlagEnum>
Get readonly list of all flags.
isDestroyedRequired
public java.lang.Boolean getIsDestroyed();
- Type: java.lang.Boolean
Indicates if the entity has been destroyed (eg: removed from store).
isMutatedRequired
public java.lang.Boolean getIsMutated();
- Type: java.lang.Boolean
Indicates if the entity has had destructive mutations applied.
metadataRequired
public java.util.List<MetadataEntry> getMetadata();
- Type: java.util.List
Get readonly list of all metadata entries.
storeRequired
public Store getStore();
- Type: Store
Reference to the store.
tagsRequired
public java.util.Map<java.lang.String, java.lang.String> getTags();
- Type: java.util.Map
Get readonly record of all tags.
uuidRequired
public java.lang.String getUuid();
- Type: java.lang.String
Universally unique identifier.
allowDestructiveMutationsRequired
public java.lang.Boolean getAllowDestructiveMutations();
- Type: java.lang.Boolean
Indicates if this node allows destructive mutations.
childrenRequired
public java.util.List<Node> getChildren();
- Type: java.util.List<Node>
Get all direct child nodes.
dependedOnByRequired
public java.util.List<Node> getDependedOnBy();
- Type: java.util.List<Node>
Get list of Nodes that depend on this node.
dependenciesRequired
public java.util.List<Node> getDependencies();
- Type: java.util.List<Node>
Get list of Nodes that this node depends on.
dependencyLinksRequired
public java.util.List<Dependency> getDependencyLinks();
- Type: java.util.List<Dependency>
Gets list of {@link Dependency} links (edges) where this node is the source.
depthRequired
public java.lang.Number getDepth();
- Type: java.lang.Number
Indicates the depth of the node relative to root (0).
idRequired
public java.lang.String getId();
- Type: java.lang.String
Node id, which is only unique within parent scope.
isAssetRequired
public java.lang.Boolean getIsAsset();
- Type: java.lang.Boolean
Indicates if this node is considered a {@link FlagEnum.ASSET}.
isCfnFqnRequired
public java.lang.Boolean getIsCfnFqn();
- Type: java.lang.Boolean
Indicates if node ConstructInfoFqn denotes a aws-cdk-lib.*.Cfn* construct.
isClusterRequired
public java.lang.Boolean getIsCluster();
- Type: java.lang.Boolean
Indicates if this node is considered a {@link FlagEnum.CLUSTER}.
isCustomResourceRequired
public java.lang.Boolean getIsCustomResource();
- Type: java.lang.Boolean
Indicates if node is a Custom Resource.
isExtraneousRequired
public java.lang.Boolean getIsExtraneous();
- Type: java.lang.Boolean
Indicates if this node is considered a {@link FlagEnum.EXTRANEOUS} node or determined to be extraneous: - Clusters that contain no children.
isGraphContainerRequired
public java.lang.Boolean getIsGraphContainer();
- Type: java.lang.Boolean
Indicates if this node is considered a {@link FlagEnum.GRAPH_CONTAINER}.
isLeafRequired
public java.lang.Boolean getIsLeaf();
- Type: java.lang.Boolean
Indicates if this node is a leaf node, which means it does not have children.
isTopLevelRequired
public java.lang.Boolean getIsTopLevel();
- Type: java.lang.Boolean
Indicates if node is direct child of the graph root node.
linksRequired
public java.util.List<Edge> getLinks();
- Type: java.util.List<Edge>
Gets all links (edges) in which this node is the source.
nodeTypeRequired
public NodeTypeEnum getNodeType();
- Type: NodeTypeEnum
Type of node.
pathRequired
public java.lang.String getPath();
- Type: java.lang.String
Path of the node.
referencedByRequired
public java.util.List<Node> getReferencedBy();
- Type: java.util.List<Node>
Get list of Nodes that reference this node.
referenceLinksRequired
public java.util.List<Reference> getReferenceLinks();
- Type: java.util.List<Reference>
Gets list of {@link Reference} links (edges) where this node is the source.
referencesRequired
public java.util.List<Node> getReferences();
- Type: java.util.List<Node>
Get list of Nodes that this node references.
reverseDependencyLinksRequired
public java.util.List<Dependency> getReverseDependencyLinks();
- Type: java.util.List<Dependency>
Gets list of {@link Dependency} links (edges) where this node is the target.
reverseLinksRequired
public java.util.List<Edge> getReverseLinks();
- Type: java.util.List<Edge>
Gets all links (edges) in which this node is the target.
reverseReferenceLinksRequired
public java.util.List<Reference> getReverseReferenceLinks();
- Type: java.util.List<Reference>
Gets list of {@link Reference} links (edges) where this node is the target.
scopesRequired
public java.util.List<Node> getScopes();
- Type: java.util.List<Node>
Gets descending ordered list of ancestors from the root.
siblingsRequired
public java.util.List<Node> getSiblings();
- Type: java.util.List<Node>
Get list of siblings of this node.
cfnPropsOptional
public PlainObject getCfnProps();
- Type: PlainObject
Gets CloudFormation properties for this node.
cfnTypeOptional
public java.lang.String getCfnType();
- Type: java.lang.String
Get the CloudFormation resource type for this node.
constructInfoOptional
public ConstructInfo getConstructInfo();
- Type: ConstructInfo
Synthesized construct information defining jii resolution data.
constructInfoFqnOptional
public java.lang.String getConstructInfoFqn();
- Type: java.lang.String
Synthesized construct information defining jii resolution data.
logicalIdOptional
public java.lang.String getLogicalId();
- Type: java.lang.String
Logical id of the node, which is only unique within containing stack.
parentOptional
public Node getParent();
- Type: Node
Parent node.
Only the root node should not have parent.
rootStackOptional
public StackNode getRootStack();
- Type: StackNode
Get root stack.
stackOptional
public StackNode getStack();
- Type: StackNode
Stack the node is contained in.
exportsRequired
public java.util.List<OutputNode> getExports();
- Type: java.util.List<OutputNode>
Get all exported {@link OutputNode}s defined by this stack.
outputsRequired
public java.util.List<OutputNode> getOutputs();
- Type: java.util.List<OutputNode>
Get all {@link OutputNode}s defined by this stack.
parametersRequired
public java.util.List<ParameterNode> getParameters();
- Type: java.util.List<ParameterNode>
Get all {@link ParameterNode}s defined by this stack.
stageOptional
public StageNode getStage();
- Type: StageNode
Get {@link StageNode} containing this stack.
StageNode
StageNode defines a cdk Stage.
Initializers
import software.aws.pdk.cdk_graph.StageNode;
new StageNode(ITypedNodeProps props);
| Name | Type | Description |
|---|---|---|
props |
ITypedNodeProps |
No description. |
propsRequired
- Type: ITypedNodeProps
Methods
| Name | Description |
|---|---|
addAttribute |
Add attribute. |
addFlag |
Add flag. |
addMetadata |
Add metadata entry. |
addTag |
Add tag. |
applyData |
Applies data (attributes, metadata, tags, flag) to entity. |
findMetadata |
Retrieves all metadata entries of a given type. |
getAttribute |
Get attribute by key. |
getTag |
Get tag by key. |
hasAttribute |
Indicates if entity has a given attribute defined, and optionally with a specific value. |
hasFlag |
Indicates if entity has a given flag. |
hasMetadata |
Indicates if entity has matching metadata entry. |
hasTag |
Indicates if entity has tag, optionally verifying tag value. |
mutateDestroy |
Destroys this node by removing all references and removing this node from the store. |
setAttribute |
Set attribute. |
setTag |
Set tag. |
addChild |
Add child node. |
addLink |
Add link to another node. |
addReverseLink |
Add link from another node. |
doesDependOn |
Indicates if this node depends on another node. |
doesReference |
Indicates if this node references another node. |
find |
Recursively find the nearest sub-node matching predicate. |
findAll |
Return this construct and all of its sub-nodes in the given order. |
findAllLinks |
Return all direct links of this node and that of all sub-nodes. |
findAncestor |
Find nearest ancestor of this node matching given predicate. |
findChild |
Find child with given id. |
findLink |
Find link of this node based on predicate. |
findLinks |
Find all links of this node based on predicate. |
getCfnProp |
Get specific CloudFormation property. |
getChild |
Get child node with given id. |
getLinkChains |
Resolve all link chains. |
getNearestAncestor |
Gets the nearest common ancestor shared between this node and another node. |
isAncestor |
Indicates if a specific node is an ancestor of this node. |
isChild |
Indicates if specific node is a child of this node. |
mutateCollapse |
Collapses all sub-nodes of this node into this node. |
mutateCollapseTo |
Collapses this node into an ancestor. |
mutateCollapseToParent |
Collapses this node into it's parent node. |
mutateHoist |
Hoist this node to an ancestor by removing it from its current parent node and in turn moving it to the ancestor. |
mutateMove |
Move this node into a new parent node. |
mutateRemoveChild |
Remove a child node from this node. |
mutateRemoveLink |
Remove a link from this node. |
mutateRemoveReverseLink |
Remove a link to this node. |
mutateUncluster |
Hoist all children to parent and collapse node to parent. |
toString |
Get string representation of this node. |
addStack |
Associate a {@link StackNode} with this stage. |
mutateRemoveStack |
Disassociate {@link StackNode} from this stage. |
addAttribute
public void addAttribute(java.lang.String key, java.lang.Object value)
Add attribute.
keyRequired
- Type: java.lang.String
valueRequired
- Type: java.lang.Object
addFlag
public void addFlag(FlagEnum flag)
Add flag.
flagRequired
- Type: FlagEnum
addMetadata
public void addMetadata(java.lang.String metadataType, java.lang.Object data)
Add metadata entry.
metadataTypeRequired
- Type: java.lang.String
dataRequired
- Type: java.lang.Object
addTag
public void addTag(java.lang.String key, java.lang.String value)
Add tag.
keyRequired
- Type: java.lang.String
valueRequired
- Type: java.lang.String
applyData
public void applyData(IBaseEntityDataProps data)
public void applyData(IBaseEntityDataProps data, java.lang.Boolean overwrite)
public void applyData(IBaseEntityDataProps data, java.lang.Boolean overwrite, java.lang.Boolean applyFlags)
Applies data (attributes, metadata, tags, flag) to entity.
Generally used only for mutations such as collapse and consume to retain data.
dataRequired
- Type: IBaseEntityDataProps
The data to apply.
overwriteOptional
- Type: java.lang.Boolean
applyFlagsOptional
- Type: java.lang.Boolean
Indicates if data is overwritten - Indicates if flags should be applied.
findMetadata
public java.util.List<MetadataEntry> findMetadata(java.lang.String metadataType)
Retrieves all metadata entries of a given type.
metadataTypeRequired
- Type: java.lang.String
getAttribute
public java.lang.Object getAttribute(java.lang.String key)
Get attribute by key.
keyRequired
- Type: java.lang.String
getTag
public java.lang.String getTag(java.lang.String key)
Get tag by key.
keyRequired
- Type: java.lang.String
hasAttribute
public java.lang.Boolean hasAttribute(java.lang.String key)
public java.lang.Boolean hasAttribute(java.lang.String key, java.lang.Object value)
Indicates if entity has a given attribute defined, and optionally with a specific value.
keyRequired
- Type: java.lang.String
valueOptional
- Type: java.lang.Object
hasFlag
public java.lang.Boolean hasFlag(FlagEnum flag)
Indicates if entity has a given flag.
flagRequired
- Type: FlagEnum
hasMetadata
public java.lang.Boolean hasMetadata(java.lang.String metadataType, java.lang.Object data)
Indicates if entity has matching metadata entry.
metadataTypeRequired
- Type: java.lang.String
dataRequired
- Type: java.lang.Object
hasTag
public java.lang.Boolean hasTag(java.lang.String key)
public java.lang.Boolean hasTag(java.lang.String key, java.lang.String value)
Indicates if entity has tag, optionally verifying tag value.
keyRequired
- Type: java.lang.String
valueOptional
- Type: java.lang.String
mutateDestroy
public void mutateDestroy()
public void mutateDestroy(java.lang.Boolean strict)
Destroys this node by removing all references and removing this node from the store.
strictOptional
- Type: java.lang.Boolean
Indicates that this node must not have references.
setAttribute
public void setAttribute(java.lang.String key, java.lang.Object value)
Set attribute.
This will overwrite existing attribute.
keyRequired
- Type: java.lang.String
valueRequired
- Type: java.lang.Object
setTag
public void setTag(java.lang.String key, java.lang.String value)
Set tag.
Will overwrite existing tag.
keyRequired
- Type: java.lang.String
valueRequired
- Type: java.lang.String
addChild
public void addChild(Node node)
Add child node.
nodeRequired
- Type: Node
addLink
public void addLink(Edge edge)
Add link to another node.
edgeRequired
- Type: Edge
addReverseLink
public void addReverseLink(Edge edge)
Add link from another node.
edgeRequired
- Type: Edge
doesDependOn
public java.lang.Boolean doesDependOn(Node node)
Indicates if this node depends on another node.
nodeRequired
- Type: Node
doesReference
public java.lang.Boolean doesReference(Node node)
Indicates if this node references another node.
nodeRequired
- Type: Node
find
public Node find(INodePredicate predicate)
Recursively find the nearest sub-node matching predicate.
predicateRequired
- Type: INodePredicate
findAll
public java.util.List<Node> findAll()
public java.util.List<Node> findAll(IFindNodeOptions options)
Return this construct and all of its sub-nodes in the given order.
Optionally filter nodes based on predicate.
optionsOptional
- Type: IFindNodeOptions
findAllLinks
public java.util.List<Edge> findAllLinks()
public java.util.List<Edge> findAllLinks(IFindEdgeOptions options)
Return all direct links of this node and that of all sub-nodes.
Optionally filter links based on predicate.
optionsOptional
- Type: IFindEdgeOptions
findAncestor
public Node findAncestor(INodePredicate predicate)
public Node findAncestor(INodePredicate predicate, java.lang.Number max)
Find nearest ancestor of this node matching given predicate.
predicateRequired
- Type: INodePredicate
Predicate to match ancestor.
maxOptional
- Type: java.lang.Number
findChild
public Node findChild(java.lang.String id)
Find child with given id.
Similar to find but does not throw error if no child found.
idRequired
- Type: java.lang.String
findLink
public Edge findLink(IEdgePredicate predicate)
public Edge findLink(IEdgePredicate predicate, java.lang.Boolean reverse)
public Edge findLink(IEdgePredicate predicate, java.lang.Boolean reverse, java.lang.Boolean follow)
public Edge findLink(IEdgePredicate predicate, java.lang.Boolean reverse, java.lang.Boolean follow, java.lang.Boolean direct)
Find link of this node based on predicate.
By default this will follow link chains to evaluate the predicate against and return the matching direct link of this node.
predicateRequired
- Type: IEdgePredicate
Edge predicate function to match edge.
reverseOptional
- Type: java.lang.Boolean
Indicates if links are search in reverse order.
followOptional
- Type: java.lang.Boolean
Indicates if link chain is followed.
directOptional
- Type: java.lang.Boolean
Indicates that only direct links should be searched.
findLinks
public java.util.List<Edge> findLinks(IEdgePredicate predicate)
public java.util.List<Edge> findLinks(IEdgePredicate predicate, java.lang.Boolean reverse)
public java.util.List<Edge> findLinks(IEdgePredicate predicate, java.lang.Boolean reverse, java.lang.Boolean follow)
public java.util.List<Edge> findLinks(IEdgePredicate predicate, java.lang.Boolean reverse, java.lang.Boolean follow, java.lang.Boolean direct)
Find all links of this node based on predicate.
By default this will follow link chains to evaluate the predicate against and return the matching direct links of this node.
predicateRequired
- Type: IEdgePredicate
Edge predicate function to match edge.
reverseOptional
- Type: java.lang.Boolean
Indicates if links are search in reverse order.
followOptional
- Type: java.lang.Boolean
Indicates if link chain is followed.
directOptional
- Type: java.lang.Boolean
Indicates that only direct links should be searched.
getCfnProp
public java.lang.String OR java.lang.Number OR java.lang.Boolean OR PlainObject OR java.util.List<java.lang.String OR java.lang.Number OR java.lang.Boolean OR PlainObject> getCfnProp(java.lang.String key)
Get specific CloudFormation property.
keyRequired
- Type: java.lang.String
getChild
public Node getChild(java.lang.String id)
Get child node with given id.
idRequired
- Type: java.lang.String
getLinkChains
public java.util.List<java.util.List<java.lang.Object>> getLinkChains()
public java.util.List<java.util.List<java.lang.Object>> getLinkChains(java.lang.Boolean reverse)
Resolve all link chains.
reverseOptional
- Type: java.lang.Boolean
getNearestAncestor
public Node getNearestAncestor(Node node)
Gets the nearest common ancestor shared between this node and another node.
nodeRequired
- Type: Node
isAncestor
public java.lang.Boolean isAncestor(Node ancestor)
Indicates if a specific node is an ancestor of this node.
ancestorRequired
- Type: Node
isChild
public java.lang.Boolean isChild(Node node)
Indicates if specific node is a child of this node.
nodeRequired
- Type: Node
mutateCollapse
public void mutateCollapse()
Collapses all sub-nodes of this node into this node.
mutateCollapseTo
public Node mutateCollapseTo(Node ancestor)
Collapses this node into an ancestor.
ancestorRequired
- Type: Node
mutateCollapseToParent
public Node mutateCollapseToParent()
Collapses this node into it's parent node.
mutateHoist
public void mutateHoist(Node newParent)
Hoist this node to an ancestor by removing it from its current parent node and in turn moving it to the ancestor.
newParentRequired
- Type: Node
mutateMove
public void mutateMove(Node newParent)
Move this node into a new parent node.
newParentRequired
- Type: Node
The parent to move this node to.
mutateRemoveChild
public java.lang.Boolean mutateRemoveChild(Node node)
Remove a child node from this node.
nodeRequired
- Type: Node
mutateRemoveLink
public java.lang.Boolean mutateRemoveLink(Edge link)
Remove a link from this node.
linkRequired
- Type: Edge
mutateRemoveReverseLink
public java.lang.Boolean mutateRemoveReverseLink(Edge link)
Remove a link to this node.
linkRequired
- Type: Edge
mutateUncluster
public void mutateUncluster()
Hoist all children to parent and collapse node to parent.
toString
public java.lang.String toString()
Get string representation of this node.
addStack
public void addStack(StackNode stack)
Associate a {@link StackNode} with this stage.
stackRequired
- Type: StackNode
mutateRemoveStack
public java.lang.Boolean mutateRemoveStack(StackNode stack)
Disassociate {@link StackNode} from this stage.
stackRequired
- Type: StackNode
Static Functions
| Name | Description |
|---|---|
isStageNode |
Indicates if node is a {@link StageNode}. |
of |
Gets the {@link StageNode} containing a given resource. |
isStageNode
import software.aws.pdk.cdk_graph.StageNode;
StageNode.isStageNode(Node node)
Indicates if node is a {@link StageNode}.
nodeRequired
- Type: Node
of
import software.aws.pdk.cdk_graph.StageNode;
StageNode.of(Node node)
Gets the {@link StageNode} containing a given resource.
nodeRequired
- Type: Node
Properties
| Name | Type | Description |
|---|---|---|
attributes |
java.util.Map |
Get readonly record of all attributes. |
flags |
java.util.List<FlagEnum> |
Get readonly list of all flags. |
isDestroyed |
java.lang.Boolean |
Indicates if the entity has been destroyed (eg: removed from store). |
isMutated |
java.lang.Boolean |
Indicates if the entity has had destructive mutations applied. |
metadata |
java.util.List |
Get readonly list of all metadata entries. |
store |
Store |
Reference to the store. |
tags |
java.util.Map |
Get readonly record of all tags. |
uuid |
java.lang.String |
Universally unique identifier. |
allowDestructiveMutations |
java.lang.Boolean |
Indicates if this node allows destructive mutations. |
children |
java.util.List<Node> |
Get all direct child nodes. |
dependedOnBy |
java.util.List<Node> |
Get list of Nodes that depend on this node. |
dependencies |
java.util.List<Node> |
Get list of Nodes that this node depends on. |
dependencyLinks |
java.util.List<Dependency> |
Gets list of {@link Dependency} links (edges) where this node is the source. |
depth |
java.lang.Number |
Indicates the depth of the node relative to root (0). |
id |
java.lang.String |
Node id, which is only unique within parent scope. |
isAsset |
java.lang.Boolean |
Indicates if this node is considered a {@link FlagEnum.ASSET}. |
isCfnFqn |
java.lang.Boolean |
Indicates if node ConstructInfoFqn denotes a aws-cdk-lib.*.Cfn* construct. |
isCluster |
java.lang.Boolean |
Indicates if this node is considered a {@link FlagEnum.CLUSTER}. |
isCustomResource |
java.lang.Boolean |
Indicates if node is a Custom Resource. |
isExtraneous |
java.lang.Boolean |
Indicates if this node is considered a {@link FlagEnum.EXTRANEOUS} node or determined to be extraneous: - Clusters that contain no children. |
isGraphContainer |
java.lang.Boolean |
Indicates if this node is considered a {@link FlagEnum.GRAPH_CONTAINER}. |
isLeaf |
java.lang.Boolean |
Indicates if this node is a leaf node, which means it does not have children. |
isTopLevel |
java.lang.Boolean |
Indicates if node is direct child of the graph root node. |
links |
java.util.List<Edge> |
Gets all links (edges) in which this node is the source. |
nodeType |
NodeTypeEnum |
Type of node. |
path |
java.lang.String |
Path of the node. |
referencedBy |
java.util.List<Node> |
Get list of Nodes that reference this node. |
referenceLinks |
java.util.List<Reference> |
Gets list of {@link Reference} links (edges) where this node is the source. |
references |
java.util.List<Node> |
Get list of Nodes that this node references. |
reverseDependencyLinks |
java.util.List<Dependency> |
Gets list of {@link Dependency} links (edges) where this node is the target. |
reverseLinks |
java.util.List<Edge> |
Gets all links (edges) in which this node is the target. |
reverseReferenceLinks |
java.util.List<Reference> |
Gets list of {@link Reference} links (edges) where this node is the target. |
scopes |
java.util.List<Node> |
Gets descending ordered list of ancestors from the root. |
siblings |
java.util.List<Node> |
Get list of siblings of this node. |
cfnProps |
PlainObject |
Gets CloudFormation properties for this node. |
cfnType |
java.lang.String |
Get the CloudFormation resource type for this node. |
constructInfo |
ConstructInfo |
Synthesized construct information defining jii resolution data. |
constructInfoFqn |
java.lang.String |
Synthesized construct information defining jii resolution data. |
logicalId |
java.lang.String |
Logical id of the node, which is only unique within containing stack. |
parent |
Node |
Parent node. |
rootStack |
StackNode |
Get root stack. |
stack |
StackNode |
Stack the node is contained in. |
stacks |
java.util.List<StackNode> |
Gets all stacks contained by this stage. |
attributesRequired
public java.lang.Object getAttributes();
- Type: java.util.Map
PlainObject\ OR java.util.List\ PlainObject\>>
Get readonly record of all attributes.
flagsRequired
public java.util.List<FlagEnum> getFlags();
- Type: java.util.List<FlagEnum>
Get readonly list of all flags.
isDestroyedRequired
public java.lang.Boolean getIsDestroyed();
- Type: java.lang.Boolean
Indicates if the entity has been destroyed (eg: removed from store).
isMutatedRequired
public java.lang.Boolean getIsMutated();
- Type: java.lang.Boolean
Indicates if the entity has had destructive mutations applied.
metadataRequired
public java.util.List<MetadataEntry> getMetadata();
- Type: java.util.List
Get readonly list of all metadata entries.
storeRequired
public Store getStore();
- Type: Store
Reference to the store.
tagsRequired
public java.util.Map<java.lang.String, java.lang.String> getTags();
- Type: java.util.Map
Get readonly record of all tags.
uuidRequired
public java.lang.String getUuid();
- Type: java.lang.String
Universally unique identifier.
allowDestructiveMutationsRequired
public java.lang.Boolean getAllowDestructiveMutations();
- Type: java.lang.Boolean
Indicates if this node allows destructive mutations.
childrenRequired
public java.util.List<Node> getChildren();
- Type: java.util.List<Node>
Get all direct child nodes.
dependedOnByRequired
public java.util.List<Node> getDependedOnBy();
- Type: java.util.List<Node>
Get list of Nodes that depend on this node.
dependenciesRequired
public java.util.List<Node> getDependencies();
- Type: java.util.List<Node>
Get list of Nodes that this node depends on.
dependencyLinksRequired
public java.util.List<Dependency> getDependencyLinks();
- Type: java.util.List<Dependency>
Gets list of {@link Dependency} links (edges) where this node is the source.
depthRequired
public java.lang.Number getDepth();
- Type: java.lang.Number
Indicates the depth of the node relative to root (0).
idRequired
public java.lang.String getId();
- Type: java.lang.String
Node id, which is only unique within parent scope.
isAssetRequired
public java.lang.Boolean getIsAsset();
- Type: java.lang.Boolean
Indicates if this node is considered a {@link FlagEnum.ASSET}.
isCfnFqnRequired
public java.lang.Boolean getIsCfnFqn();
- Type: java.lang.Boolean
Indicates if node ConstructInfoFqn denotes a aws-cdk-lib.*.Cfn* construct.
isClusterRequired
public java.lang.Boolean getIsCluster();
- Type: java.lang.Boolean
Indicates if this node is considered a {@link FlagEnum.CLUSTER}.
isCustomResourceRequired
public java.lang.Boolean getIsCustomResource();
- Type: java.lang.Boolean
Indicates if node is a Custom Resource.
isExtraneousRequired
public java.lang.Boolean getIsExtraneous();
- Type: java.lang.Boolean
Indicates if this node is considered a {@link FlagEnum.EXTRANEOUS} node or determined to be extraneous: - Clusters that contain no children.
isGraphContainerRequired
public java.lang.Boolean getIsGraphContainer();
- Type: java.lang.Boolean
Indicates if this node is considered a {@link FlagEnum.GRAPH_CONTAINER}.
isLeafRequired
public java.lang.Boolean getIsLeaf();
- Type: java.lang.Boolean
Indicates if this node is a leaf node, which means it does not have children.
isTopLevelRequired
public java.lang.Boolean getIsTopLevel();
- Type: java.lang.Boolean
Indicates if node is direct child of the graph root node.
linksRequired
public java.util.List<Edge> getLinks();
- Type: java.util.List<Edge>
Gets all links (edges) in which this node is the source.
nodeTypeRequired
public NodeTypeEnum getNodeType();
- Type: NodeTypeEnum
Type of node.
pathRequired
public java.lang.String getPath();
- Type: java.lang.String
Path of the node.
referencedByRequired
public java.util.List<Node> getReferencedBy();
- Type: java.util.List<Node>
Get list of Nodes that reference this node.
referenceLinksRequired
public java.util.List<Reference> getReferenceLinks();
- Type: java.util.List<Reference>
Gets list of {@link Reference} links (edges) where this node is the source.
referencesRequired
public java.util.List<Node> getReferences();
- Type: java.util.List<Node>
Get list of Nodes that this node references.
reverseDependencyLinksRequired
public java.util.List<Dependency> getReverseDependencyLinks();
- Type: java.util.List<Dependency>
Gets list of {@link Dependency} links (edges) where this node is the target.
reverseLinksRequired
public java.util.List<Edge> getReverseLinks();
- Type: java.util.List<Edge>
Gets all links (edges) in which this node is the target.
reverseReferenceLinksRequired
public java.util.List<Reference> getReverseReferenceLinks();
- Type: java.util.List<Reference>
Gets list of {@link Reference} links (edges) where this node is the target.
scopesRequired
public java.util.List<Node> getScopes();
- Type: java.util.List<Node>
Gets descending ordered list of ancestors from the root.
siblingsRequired
public java.util.List<Node> getSiblings();
- Type: java.util.List<Node>
Get list of siblings of this node.
cfnPropsOptional
public PlainObject getCfnProps();
- Type: PlainObject
Gets CloudFormation properties for this node.
cfnTypeOptional
public java.lang.String getCfnType();
- Type: java.lang.String
Get the CloudFormation resource type for this node.
constructInfoOptional
public ConstructInfo getConstructInfo();
- Type: ConstructInfo
Synthesized construct information defining jii resolution data.
constructInfoFqnOptional
public java.lang.String getConstructInfoFqn();
- Type: java.lang.String
Synthesized construct information defining jii resolution data.
logicalIdOptional
public java.lang.String getLogicalId();
- Type: java.lang.String
Logical id of the node, which is only unique within containing stack.
parentOptional
public Node getParent();
- Type: Node
Parent node.
Only the root node should not have parent.
rootStackOptional
public StackNode getRootStack();
- Type: StackNode
Get root stack.
stackOptional
public StackNode getStack();
- Type: StackNode
Stack the node is contained in.
stacksRequired
public java.util.List<StackNode> getStacks();
- Type: java.util.List<StackNode>
Gets all stacks contained by this stage.
Store
- Implements: ISerializableGraphStore
Store class provides the in-memory database-like interface for managing all entities in the graph.
Initializers
import software.aws.pdk.cdk_graph.Store;
new Store();,new Store(java.lang.Boolean allowDestructiveMutations);
| Name | Type | Description |
|---|---|---|
allowDestructiveMutations |
java.lang.Boolean |
No description. |
allowDestructiveMutationsOptional
- Type: java.lang.Boolean
Methods
| Name | Description |
|---|---|
addEdge |
Add edge to the store. |
addNode |
Add node to the store. |
addStack |
Add stack node to the store. |
addStage |
Add stage to the store. |
clone |
Clone the store to allow destructive mutations. |
computeLogicalUniversalId |
Compute universal logicalId based on parent stack and construct logicalId (<stack>:<logicalId>). |
findNodeByImportArn |
Attempts to lookup the {@link Node} associated with a given import arn token. |
findNodeByLogicalId |
Find node within given stack with given logicalId. |
findNodeByLogicalUniversalId |
Find node by universal logicalId (<stack>:<logicalId>). |
getEdge |
Get stored edge by UUID. |
getNode |
Get stored node by UUID. |
getStack |
Get stored stack node by UUID. |
getStage |
Get stored stage node by UUID. |
mutateRemoveEdge |
Remove edge from the store. |
mutateRemoveNode |
Remove node from the store. |
recordImportArn |
Records arn tokens from imported resources (eg: s3.Bucket.fromBucketArn()) that are used for resolving references. |
recordLogicalId |
Record a universal logicalId to node mapping in the store. |
serialize |
Serialize the store. |
verifyDestructiveMutationAllowed |
Verifies that the store allows destructive mutations. |
addEdge
public void addEdge(Edge edge)
Add edge to the store.
edgeRequired
- Type: Edge
addNode
public void addNode(Node node)
Add node to the store.
nodeRequired
- Type: Node
addStack
public void addStack(StackNode stack)
Add stack node to the store.
stackRequired
- Type: StackNode
addStage
public void addStage(StageNode stage)
Add stage to the store.
stageRequired
- Type: StageNode
clone
public Store clone()
public Store clone(java.lang.Boolean allowDestructiveMutations)
Clone the store to allow destructive mutations.
allowDestructiveMutationsOptional
- Type: java.lang.Boolean
Indicates if destructive mutations are allowed;
defaults to true
computeLogicalUniversalId
public java.lang.String computeLogicalUniversalId(StackNode stack, java.lang.String logicalId)
Compute universal logicalId based on parent stack and construct logicalId (<stack>:<logicalId>).
Construct logicalIds are only unique within their containing stack, so to use logicalId* lookups universally (like resolving references) we need a universal key.
stackRequired
- Type: StackNode
logicalIdRequired
- Type: java.lang.String
findNodeByImportArn
public Node findNodeByImportArn(java.lang.Object value)
Attempts to lookup the {@link Node} associated with a given import arn token.
valueRequired
- Type: java.lang.Object
Import arn value, which is either object to tokenize or already tokenized string.
findNodeByLogicalId
public Node findNodeByLogicalId(StackNode stack, java.lang.String logicalId)
Find node within given stack with given logicalId.
stackRequired
- Type: StackNode
logicalIdRequired
- Type: java.lang.String
findNodeByLogicalUniversalId
public Node findNodeByLogicalUniversalId(java.lang.String uid)
Find node by universal logicalId (<stack>:<logicalId>).
uidRequired
- Type: java.lang.String
getEdge
public Edge getEdge(java.lang.String uuid)
Get stored edge by UUID.
uuidRequired
- Type: java.lang.String
getNode
public Node getNode(java.lang.String uuid)
Get stored node by UUID.
uuidRequired
- Type: java.lang.String
getStack
public StackNode getStack(java.lang.String uuid)
Get stored stack node by UUID.
uuidRequired
- Type: java.lang.String
getStage
public StageNode getStage(java.lang.String uuid)
Get stored stage node by UUID.
uuidRequired
- Type: java.lang.String
mutateRemoveEdge
public java.lang.Boolean mutateRemoveEdge(Edge edge)
Remove edge from the store.
edgeRequired
- Type: Edge
mutateRemoveNode
public java.lang.Boolean mutateRemoveNode(Node node)
Remove node from the store.
nodeRequired
- Type: Node
recordImportArn
public void recordImportArn(java.lang.String arnToken, Node resource)
Records arn tokens from imported resources (eg: s3.Bucket.fromBucketArn()) that are used for resolving references.
arnTokenRequired
- Type: java.lang.String
resourceRequired
- Type: Node
recordLogicalId
public void recordLogicalId(StackNode stack, java.lang.String logicalId, Node resource)
Record a universal logicalId to node mapping in the store.
stackRequired
- Type: StackNode
logicalIdRequired
- Type: java.lang.String
resourceRequired
- Type: Node
serialize
public SGGraphStore serialize()
Serialize the store.
verifyDestructiveMutationAllowed
public void verifyDestructiveMutationAllowed()
Verifies that the store allows destructive mutations.
Static Functions
| Name | Description |
|---|---|
fromSerializedStore |
Builds store from serialized store data. |
fromSerializedStore
import software.aws.pdk.cdk_graph.Store;
Store.fromSerializedStore(SGGraphStore serializedStore)
Builds store from serialized store data.
serializedStoreRequired
- Type: SGGraphStore
Properties
| Name | Type | Description |
|---|---|---|
allowDestructiveMutations |
java.lang.Boolean |
Indicates if the store allows destructive mutations. |
counts |
IStoreCounts |
Get record of all store counters. |
edges |
java.util.List<Edge> |
Gets all stored edges. |
nodes |
java.util.List<Node> |
Gets all stored nodes. |
root |
RootNode |
Root node in the store. |
rootStacks |
java.util.List<StackNode> |
Gets all stored root stack nodes. |
stacks |
java.util.List<StackNode> |
Gets all stored stack nodes. |
stages |
java.util.List<StageNode> |
Gets all stored stage nodes. |
version |
java.lang.String |
Current SemVer version of the store. |
allowDestructiveMutationsRequired
public java.lang.Boolean getAllowDestructiveMutations();
- Type: java.lang.Boolean
Indicates if the store allows destructive mutations.
Destructive mutations are only allowed on clones of the store to prevent plugins and filters from mutating the store for downstream plugins.
All mutate* methods are only allowed on stores that allow destructive mutations.
This behavior may change in the future if the need arises for plugins to pass mutated stores to downstream plugins. But it will be done cautiously with ensuring the intent of downstream plugin is to receive the mutated store.
countsRequired
public IStoreCounts getCounts();
- Type: IStoreCounts
Get record of all store counters.
edgesRequired
public java.util.List<Edge> getEdges();
- Type: java.util.List<Edge>
Gets all stored edges.
nodesRequired
public java.util.List<Node> getNodes();
- Type: java.util.List<Node>
Gets all stored nodes.
rootRequired
public RootNode getRoot();
- Type: RootNode
Root node in the store.
The root node is not the computed root, but the graph root which is auto-generated and can not be mutated.
rootStacksRequired
public java.util.List<StackNode> getRootStacks();
- Type: java.util.List<StackNode>
Gets all stored root stack nodes.
stacksRequired
public java.util.List<StackNode> getStacks();
- Type: java.util.List<StackNode>
Gets all stored stack nodes.
stagesRequired
public java.util.List<StageNode> getStages();
- Type: java.util.List<StageNode>
Gets all stored stage nodes.
versionRequired
public java.lang.String getVersion();
- Type: java.lang.String
Current SemVer version of the store.
Protocols
IAppNodeProps
-
Extends: IBaseEntityDataProps
-
Implemented By: IAppNodeProps
{@link AppNode} props.
Properties
| Name | Type | Description |
|---|---|---|
attributes |
java.util.Map |
Attributes. |
flags |
java.util.List<FlagEnum> |
Flags. |
metadata |
java.util.List |
Metadata entries. |
tags |
java.util.Map |
Tags. |
store |
Store |
Store. |
cfnType |
java.lang.String |
Type of CloudFormation resource. |
constructInfo |
ConstructInfo |
Synthesized construct information defining jii resolution data. |
logicalId |
java.lang.String |
Logical id of the node, which is only unique within containing stack. |
parent |
Node |
Parent node. |
attributesOptional
public java.lang.Object getAttributes();
- Type: java.util.Map
PlainObject\ OR java.util.List\ PlainObject\>>
Attributes.
flagsOptional
public java.util.List<FlagEnum> getFlags();
- Type: java.util.List<FlagEnum>
Flags.
metadataOptional
public java.util.List<MetadataEntry> getMetadata();
- Type: java.util.List
Metadata entries.
tagsOptional
public java.util.Map<java.lang.String, java.lang.String> getTags();
- Type: java.util.Map
Tags.
storeRequired
public Store getStore();
- Type: Store
Store.
cfnTypeOptional
public java.lang.String getCfnType();
- Type: java.lang.String
Type of CloudFormation resource.
constructInfoOptional
public ConstructInfo getConstructInfo();
- Type: ConstructInfo
Synthesized construct information defining jii resolution data.
logicalIdOptional
public java.lang.String getLogicalId();
- Type: java.lang.String
Logical id of the node, which is only unique within containing stack.
parentOptional
public Node getParent();
- Type: Node
Parent node.
IAttributeReferenceProps
-
Extends: ITypedEdgeProps
-
Implemented By: IAttributeReferenceProps
Attribute type reference props.
Properties
| Name | Type | Description |
|---|---|---|
attributes |
java.util.Map |
Attributes. |
flags |
java.util.List<FlagEnum> |
Flags. |
metadata |
java.util.List |
Metadata entries. |
tags |
java.util.Map |
Tags. |
store |
Store |
Store. |
uuid |
java.lang.String |
UUID. |
source |
Node |
Edge source is the node that defines the edge (tail). |
target |
Node |
Edge target is the node being referenced by the source (head). |
value |
java.lang.String OR java.lang.Number OR java.lang.Boolean OR PlainObject OR java.util.List |
Resolved attribute value. |
attributesOptional
public java.lang.Object getAttributes();
- Type: java.util.Map
PlainObject\ OR java.util.List\ PlainObject\>>
Attributes.
flagsOptional
public java.util.List<FlagEnum> getFlags();
- Type: java.util.List<FlagEnum>
Flags.
metadataOptional
public java.util.List<MetadataEntry> getMetadata();
- Type: java.util.List
Metadata entries.
tagsOptional
public java.util.Map<java.lang.String, java.lang.String> getTags();
- Type: java.util.Map
Tags.
storeRequired
public Store getStore();
- Type: Store
Store.
uuidRequired
public java.lang.String getUuid();
- Type: java.lang.String
UUID.
sourceRequired
public Node getSource();
- Type: Node
Edge source is the node that defines the edge (tail).
targetRequired
public Node getTarget();
- Type: Node
Edge target is the node being referenced by the source (head).
valueRequired
public java.lang.Object getValue();
- Type: java.lang.String OR java.lang.Number OR java.lang.Boolean OR PlainObject OR java.util.List
PlainObject\>
Resolved attribute value.
IBaseEntityDataProps
- Implemented By: IAppNodeProps, IAttributeReferenceProps, IBaseEntityDataProps, IBaseEntityProps, ICfnResourceNodeProps, IEdgeProps, INestedStackNodeProps, INodeProps, IOutputNodeProps, IParameterNodeProps, IReferenceProps, IResourceNodeProps, IStackNodeProps, ITypedEdgeProps, ITypedNodeProps
Base interface for all store entities data props.
Properties
| Name | Type | Description |
|---|---|---|
attributes |
java.util.Map |
Attributes. |
flags |
java.util.List<FlagEnum> |
Flags. |
metadata |
java.util.List |
Metadata entries. |
tags |
java.util.Map |
Tags. |
attributesOptional
public java.lang.Object getAttributes();
- Type: java.util.Map
PlainObject\ OR java.util.List\ PlainObject\>>
Attributes.
flagsOptional
public java.util.List<FlagEnum> getFlags();
- Type: java.util.List<FlagEnum>
Flags.
metadataOptional
public java.util.List<MetadataEntry> getMetadata();
- Type: java.util.List
Metadata entries.
tagsOptional
public java.util.Map<java.lang.String, java.lang.String> getTags();
- Type: java.util.Map
Tags.
IBaseEntityProps
-
Extends: IBaseEntityDataProps
-
Implemented By: IAttributeReferenceProps, IBaseEntityProps, ICfnResourceNodeProps, IEdgeProps, INestedStackNodeProps, INodeProps, IOutputNodeProps, IParameterNodeProps, IReferenceProps, IResourceNodeProps, IStackNodeProps, ITypedEdgeProps, ITypedNodeProps
Base interface for all store entities props.
Properties
| Name | Type | Description |
|---|---|---|
attributes |
java.util.Map |
Attributes. |
flags |
java.util.List<FlagEnum> |
Flags. |
metadata |
java.util.List |
Metadata entries. |
tags |
java.util.Map |
Tags. |
store |
Store |
Store. |
uuid |
java.lang.String |
UUID. |
attributesOptional
public java.lang.Object getAttributes();
- Type: java.util.Map
PlainObject\ OR java.util.List\ PlainObject\>>
Attributes.
flagsOptional
public java.util.List<FlagEnum> getFlags();
- Type: java.util.List<FlagEnum>
Flags.
metadataOptional
public java.util.List<MetadataEntry> getMetadata();
- Type: java.util.List
Metadata entries.
tagsOptional
public java.util.Map<java.lang.String, java.lang.String> getTags();
- Type: java.util.Map
Tags.
storeRequired
public Store getStore();
- Type: Store
Store.
uuidRequired
public java.lang.String getUuid();
- Type: java.lang.String
UUID.
ICdkGraphPlugin
- Implemented By: ICdkGraphPlugin
CdkGraph Plugin interface.
Properties
| Name | Type | Description |
|---|---|---|
id |
java.lang.String |
Unique identifier for this plugin. |
version |
java.lang.String |
Plugin version. |
dependencies |
java.util.List |
List of plugins this plugin depends on, including optional semver version (eg: ["foo", "bar@1.2"]). |
bind |
IGraphPluginBindCallback |
Binds the plugin to the CdkGraph instance. |
inspect |
IGraphVisitorCallback |
Node visitor callback for construct tree traversal. |
report |
IGraphReportCallback |
Generate asynchronous reports based on the graph. |
synthesize |
IGraphSynthesizeCallback |
Called during CDK synthesize to generate synchronous artifacts based on the in-memory graph passed to the plugin. |
idRequired
public java.lang.String getId();
- Type: java.lang.String
Unique identifier for this plugin.
versionRequired
public java.lang.String getVersion();
- Type: java.lang.String
Plugin version.
dependenciesOptional
public java.util.List<java.lang.String> getDependencies();
- Type: java.util.List
List of plugins this plugin depends on, including optional semver version (eg: ["foo", "bar@1.2"]).
bindRequired
public IGraphPluginBindCallback getBind();
- Type: IGraphPluginBindCallback
Binds the plugin to the CdkGraph instance.
Enables plugins to receive base configs.
inspectOptional
public IGraphVisitorCallback getInspect();
- Type: IGraphVisitorCallback
Node visitor callback for construct tree traversal.
This follows IAspect.visit pattern, but the order of visitor traversal in managed by the CdkGraph.
reportOptional
public IGraphReportCallback getReport();
- Type: IGraphReportCallback
Generate asynchronous reports based on the graph.
This is not automatically called when synthesizing CDK.
Developer must explicitly add await graphInstance.report() to the CDK bin or invoke this outside
of the CDK synth. In either case, the plugin receives the in-memory graph interface when invoked, as the
CdkGraph will deserialize the graph prior to invoking the plugin report.
synthesizeOptional
public IGraphSynthesizeCallback getSynthesize();
- Type: IGraphSynthesizeCallback
Called during CDK synthesize to generate synchronous artifacts based on the in-memory graph passed to the plugin.
This is called in fifo order of plugins.
ICfnResourceNodeProps
-
Extends: ITypedNodeProps
-
Implemented By: ICfnResourceNodeProps
CfnResourceNode props.
Properties
| Name | Type | Description |
|---|---|---|
attributes |
java.util.Map |
Attributes. |
flags |
java.util.List<FlagEnum> |
Flags. |
metadata |
java.util.List |
Metadata entries. |
tags |
java.util.Map |
Tags. |
store |
Store |
Store. |
uuid |
java.lang.String |
UUID. |
id |
java.lang.String |
Node id, which is unique within parent scope. |
path |
java.lang.String |
Path of the node. |
cfnType |
java.lang.String |
Type of CloudFormation resource. |
constructInfo |
ConstructInfo |
Synthesized construct information defining jii resolution data. |
logicalId |
java.lang.String |
Logical id of the node, which is only unique within containing stack. |
parent |
Node |
Parent node. |
stack |
StackNode |
Stack the node is contained. |
importArnToken |
java.lang.String |
No description. |
nodeType |
NodeTypeEnum |
No description. |
attributesOptional
public java.lang.Object getAttributes();
- Type: java.util.Map
PlainObject\ OR java.util.List\ PlainObject\>>
Attributes.
flagsOptional
public java.util.List<FlagEnum> getFlags();
- Type: java.util.List<FlagEnum>
Flags.
metadataOptional
public java.util.List<MetadataEntry> getMetadata();
- Type: java.util.List
Metadata entries.
tagsOptional
public java.util.Map<java.lang.String, java.lang.String> getTags();
- Type: java.util.Map
Tags.
storeRequired
public Store getStore();
- Type: Store
Store.
uuidRequired
public java.lang.String getUuid();
- Type: java.lang.String
UUID.
idRequired
public java.lang.String getId();
- Type: java.lang.String
Node id, which is unique within parent scope.
pathRequired
public java.lang.String getPath();
- Type: java.lang.String
Path of the node.
cfnTypeOptional
public java.lang.String getCfnType();
- Type: java.lang.String
Type of CloudFormation resource.
constructInfoOptional
public ConstructInfo getConstructInfo();
- Type: ConstructInfo
Synthesized construct information defining jii resolution data.
logicalIdOptional
public java.lang.String getLogicalId();
- Type: java.lang.String
Logical id of the node, which is only unique within containing stack.
parentOptional
public Node getParent();
- Type: Node
Parent node.
stackOptional
public StackNode getStack();
- Type: StackNode
Stack the node is contained.
importArnTokenOptional
public java.lang.String getImportArnToken();
- Type: java.lang.String
nodeTypeOptional
public NodeTypeEnum getNodeType();
- Type: NodeTypeEnum
IEdgePredicate
- Implemented By: IEdgePredicate
Predicate to match edge.
Methods
| Name | Description |
|---|---|
filter |
No description. |
filter
public java.lang.Boolean filter(Edge edge)
edgeRequired
- Type: Edge
IEdgeProps
-
Extends: ITypedEdgeProps
-
Implemented By: IEdgeProps
Edge props interface.
Properties
| Name | Type | Description |
|---|---|---|
attributes |
java.util.Map |
Attributes. |
flags |
java.util.List<FlagEnum> |
Flags. |
metadata |
java.util.List |
Metadata entries. |
tags |
java.util.Map |
Tags. |
store |
Store |
Store. |
uuid |
java.lang.String |
UUID. |
source |
Node |
Edge source is the node that defines the edge (tail). |
target |
Node |
Edge target is the node being referenced by the source (head). |
direction |
EdgeDirectionEnum |
Indicates the direction in which the edge is directed. |
edgeType |
EdgeTypeEnum |
Type of edge. |
attributesOptional
public java.lang.Object getAttributes();
- Type: java.util.Map
PlainObject\ OR java.util.List\ PlainObject\>>
Attributes.
flagsOptional
public java.util.List<FlagEnum> getFlags();
- Type: java.util.List<FlagEnum>
Flags.
metadataOptional
public java.util.List<MetadataEntry> getMetadata();
- Type: java.util.List
Metadata entries.
tagsOptional
public java.util.Map<java.lang.String, java.lang.String> getTags();
- Type: java.util.Map
Tags.
storeRequired
public Store getStore();
- Type: Store
Store.
uuidRequired
public java.lang.String getUuid();
- Type: java.lang.String
UUID.
sourceRequired
public Node getSource();
- Type: Node
Edge source is the node that defines the edge (tail).
targetRequired
public Node getTarget();
- Type: Node
Edge target is the node being referenced by the source (head).
directionRequired
public EdgeDirectionEnum getDirection();
- Type: EdgeDirectionEnum
Indicates the direction in which the edge is directed.
edgeTypeRequired
public EdgeTypeEnum getEdgeType();
- Type: EdgeTypeEnum
Type of edge.
IFilterFocusCallback
- Implemented By: IFilterFocusCallback
Determines focus node of filter plan.
Methods
| Name | Description |
|---|---|
filter |
No description. |
filter
public Node filter(Store store)
storeRequired
- Type: Store
IFindEdgeOptions
- Implemented By: IFindEdgeOptions
Options for edge based search operations.
Properties
| Name | Type | Description |
|---|---|---|
order |
software.constructs.ConstructOrder |
The order of traversal during search path. |
predicate |
IEdgePredicate |
The predicate to match edges(s). |
reverse |
java.lang.Boolean |
Indicates reverse order. |
orderOptional
public ConstructOrder getOrder();
- Type: software.constructs.ConstructOrder
The order of traversal during search path.
predicateOptional
public IEdgePredicate getPredicate();
- Type: IEdgePredicate
The predicate to match edges(s).
reverseOptional
public java.lang.Boolean getReverse();
- Type: java.lang.Boolean
Indicates reverse order.
IFindNodeOptions
- Implemented By: IFindNodeOptions
Options for node based search operations.
Properties
| Name | Type | Description |
|---|---|---|
order |
software.constructs.ConstructOrder |
The order of traversal during search path. |
predicate |
INodePredicate |
The predicate to match node(s). |
orderOptional
public ConstructOrder getOrder();
- Type: software.constructs.ConstructOrder
The order of traversal during search path.
predicateOptional
public INodePredicate getPredicate();
- Type: INodePredicate
The predicate to match node(s).
IGraphPluginBindCallback
- Implemented By: IGraphPluginBindCallback
Callback signature for graph Plugin.bind operation.
IGraphReportCallback
- Implemented By: IGraphReportCallback
Callback signature for graph Plugin.report operation.
IGraphStoreFilter
- Implemented By: IGraphStoreFilter
Store filter callback interface used to perform filtering operations directly against the store, as opposed to using {@link IGraphFilter} definitions.
Methods
| Name | Description |
|---|---|
filter |
No description. |
filter
public void filter(Store store)
storeRequired
- Type: Store
IGraphSynthesizeCallback
- Implemented By: IGraphSynthesizeCallback
Callback signature for graph Plugin.synthesize operation.
IGraphVisitorCallback
- Implemented By: IGraphVisitorCallback
Callback signature for graph Plugin.inspect operation.
INestedStackNodeProps
-
Extends: IStackNodeProps
-
Implemented By: INestedStackNodeProps
{@link NestedStackNode} props.
Properties
| Name | Type | Description |
|---|---|---|
attributes |
java.util.Map |
Attributes. |
flags |
java.util.List<FlagEnum> |
Flags. |
metadata |
java.util.List |
Metadata entries. |
tags |
java.util.Map |
Tags. |
store |
Store |
Store. |
uuid |
java.lang.String |
UUID. |
id |
java.lang.String |
Node id, which is unique within parent scope. |
path |
java.lang.String |
Path of the node. |
cfnType |
java.lang.String |
Type of CloudFormation resource. |
constructInfo |
ConstructInfo |
Synthesized construct information defining jii resolution data. |
logicalId |
java.lang.String |
Logical id of the node, which is only unique within containing stack. |
parent |
Node |
Parent node. |
stack |
StackNode |
Stack the node is contained. |
nodeType |
NodeTypeEnum |
Type of node. |
parentStack |
StackNode |
Parent stack. |
attributesOptional
public java.lang.Object getAttributes();
- Type: java.util.Map
PlainObject\ OR java.util.List\ PlainObject\>>
Attributes.
flagsOptional
public java.util.List<FlagEnum> getFlags();
- Type: java.util.List<FlagEnum>
Flags.
metadataOptional
public java.util.List<MetadataEntry> getMetadata();
- Type: java.util.List
Metadata entries.
tagsOptional
public java.util.Map<java.lang.String, java.lang.String> getTags();
- Type: java.util.Map
Tags.
storeRequired
public Store getStore();
- Type: Store
Store.
uuidRequired
public java.lang.String getUuid();
- Type: java.lang.String
UUID.
idRequired
public java.lang.String getId();
- Type: java.lang.String
Node id, which is unique within parent scope.
pathRequired
public java.lang.String getPath();
- Type: java.lang.String
Path of the node.
cfnTypeOptional
public java.lang.String getCfnType();
- Type: java.lang.String
Type of CloudFormation resource.
constructInfoOptional
public ConstructInfo getConstructInfo();
- Type: ConstructInfo
Synthesized construct information defining jii resolution data.
logicalIdOptional
public java.lang.String getLogicalId();
- Type: java.lang.String
Logical id of the node, which is only unique within containing stack.
parentOptional
public Node getParent();
- Type: Node
Parent node.
stackOptional
public StackNode getStack();
- Type: StackNode
Stack the node is contained.
nodeTypeOptional
public NodeTypeEnum getNodeType();
- Type: NodeTypeEnum
Type of node.
parentStackRequired
public StackNode getParentStack();
- Type: StackNode
Parent stack.
INodePredicate
- Implemented By: INodePredicate
Predicate to match node.
Methods
| Name | Description |
|---|---|
filter |
No description. |
filter
public java.lang.Boolean filter(Node node)
nodeRequired
- Type: Node
INodeProps
-
Extends: ITypedNodeProps
-
Implemented By: INodeProps
Node props.
Properties
| Name | Type | Description |
|---|---|---|
attributes |
java.util.Map |
Attributes. |
flags |
java.util.List<FlagEnum> |
Flags. |
metadata |
java.util.List |
Metadata entries. |
tags |
java.util.Map |
Tags. |
store |
Store |
Store. |
uuid |
java.lang.String |
UUID. |
id |
java.lang.String |
Node id, which is unique within parent scope. |
path |
java.lang.String |
Path of the node. |
cfnType |
java.lang.String |
Type of CloudFormation resource. |
constructInfo |
ConstructInfo |
Synthesized construct information defining jii resolution data. |
logicalId |
java.lang.String |
Logical id of the node, which is only unique within containing stack. |
parent |
Node |
Parent node. |
stack |
StackNode |
Stack the node is contained. |
nodeType |
NodeTypeEnum |
Type of node. |
attributesOptional
public java.lang.Object getAttributes();
- Type: java.util.Map
PlainObject\ OR java.util.List\ PlainObject\>>
Attributes.
flagsOptional
public java.util.List<FlagEnum> getFlags();
- Type: java.util.List<FlagEnum>
Flags.
metadataOptional
public java.util.List<MetadataEntry> getMetadata();
- Type: java.util.List
Metadata entries.
tagsOptional
public java.util.Map<java.lang.String, java.lang.String> getTags();
- Type: java.util.Map
Tags.
storeRequired
public Store getStore();
- Type: Store
Store.
uuidRequired
public java.lang.String getUuid();
- Type: java.lang.String
UUID.
idRequired
public java.lang.String getId();
- Type: java.lang.String
Node id, which is unique within parent scope.
pathRequired
public java.lang.String getPath();
- Type: java.lang.String
Path of the node.
cfnTypeOptional
public java.lang.String getCfnType();
- Type: java.lang.String
Type of CloudFormation resource.
constructInfoOptional
public ConstructInfo getConstructInfo();
- Type: ConstructInfo
Synthesized construct information defining jii resolution data.
logicalIdOptional
public java.lang.String getLogicalId();
- Type: java.lang.String
Logical id of the node, which is only unique within containing stack.
parentOptional
public Node getParent();
- Type: Node
Parent node.
stackOptional
public StackNode getStack();
- Type: StackNode
Stack the node is contained.
nodeTypeRequired
public NodeTypeEnum getNodeType();
- Type: NodeTypeEnum
Type of node.
IOutputNodeProps
-
Extends: ITypedNodeProps
-
Implemented By: IOutputNodeProps
OutputNode props.
Properties
| Name | Type | Description |
|---|---|---|
attributes |
java.util.Map |
Attributes. |
flags |
java.util.List<FlagEnum> |
Flags. |
metadata |
java.util.List |
Metadata entries. |
tags |
java.util.Map |
Tags. |
store |
Store |
Store. |
uuid |
java.lang.String |
UUID. |
id |
java.lang.String |
Node id, which is unique within parent scope. |
path |
java.lang.String |
Path of the node. |
cfnType |
java.lang.String |
Type of CloudFormation resource. |
constructInfo |
ConstructInfo |
Synthesized construct information defining jii resolution data. |
logicalId |
java.lang.String |
Logical id of the node, which is only unique within containing stack. |
parent |
Node |
Parent node. |
stack |
StackNode |
Stack the node is contained. |
value |
java.lang.Object |
Resolved output value. |
description |
java.lang.String |
Description. |
exportName |
java.lang.String |
Export name. |
attributesOptional
public java.lang.Object getAttributes();
- Type: java.util.Map
PlainObject\ OR java.util.List\ PlainObject\>>
Attributes.
flagsOptional
public java.util.List<FlagEnum> getFlags();
- Type: java.util.List<FlagEnum>
Flags.
metadataOptional
public java.util.List<MetadataEntry> getMetadata();
- Type: java.util.List
Metadata entries.
tagsOptional
public java.util.Map<java.lang.String, java.lang.String> getTags();
- Type: java.util.Map
Tags.
storeRequired
public Store getStore();
- Type: Store
Store.
uuidRequired
public java.lang.String getUuid();
- Type: java.lang.String
UUID.
idRequired
public java.lang.String getId();
- Type: java.lang.String
Node id, which is unique within parent scope.
pathRequired
public java.lang.String getPath();
- Type: java.lang.String
Path of the node.
cfnTypeOptional
public java.lang.String getCfnType();
- Type: java.lang.String
Type of CloudFormation resource.
constructInfoOptional
public ConstructInfo getConstructInfo();
- Type: ConstructInfo
Synthesized construct information defining jii resolution data.
logicalIdOptional
public java.lang.String getLogicalId();
- Type: java.lang.String
Logical id of the node, which is only unique within containing stack.
parentOptional
public Node getParent();
- Type: Node
Parent node.
stackOptional
public StackNode getStack();
- Type: StackNode
Stack the node is contained.
valueRequired
public java.lang.Object getValue();
- Type: java.lang.Object
Resolved output value.
descriptionOptional
public java.lang.String getDescription();
- Type: java.lang.String
Description.
exportNameOptional
public java.lang.String getExportName();
- Type: java.lang.String
Export name.
IParameterNodeProps
-
Extends: ITypedNodeProps
-
Implemented By: IParameterNodeProps
{@link ParameterNode} props.
Properties
| Name | Type | Description |
|---|---|---|
attributes |
java.util.Map |
Attributes. |
flags |
java.util.List<FlagEnum> |
Flags. |
metadata |
java.util.List |
Metadata entries. |
tags |
java.util.Map |
Tags. |
store |
Store |
Store. |
uuid |
java.lang.String |
UUID. |
id |
java.lang.String |
Node id, which is unique within parent scope. |
path |
java.lang.String |
Path of the node. |
cfnType |
java.lang.String |
Type of CloudFormation resource. |
constructInfo |
ConstructInfo |
Synthesized construct information defining jii resolution data. |
logicalId |
java.lang.String |
Logical id of the node, which is only unique within containing stack. |
parent |
Node |
Parent node. |
stack |
StackNode |
Stack the node is contained. |
parameterType |
java.lang.String |
Parameter type. |
value |
java.lang.Object |
Resolved value. |
description |
java.lang.String |
Description. |
attributesOptional
public java.lang.Object getAttributes();
- Type: java.util.Map
PlainObject\ OR java.util.List\ PlainObject\>>
Attributes.
flagsOptional
public java.util.List<FlagEnum> getFlags();
- Type: java.util.List<FlagEnum>
Flags.
metadataOptional
public java.util.List<MetadataEntry> getMetadata();
- Type: java.util.List
Metadata entries.
tagsOptional
public java.util.Map<java.lang.String, java.lang.String> getTags();
- Type: java.util.Map
Tags.
storeRequired
public Store getStore();
- Type: Store
Store.
uuidRequired
public java.lang.String getUuid();
- Type: java.lang.String
UUID.
idRequired
public java.lang.String getId();
- Type: java.lang.String
Node id, which is unique within parent scope.
pathRequired
public java.lang.String getPath();
- Type: java.lang.String
Path of the node.
cfnTypeOptional
public java.lang.String getCfnType();
- Type: java.lang.String
Type of CloudFormation resource.
constructInfoOptional
public ConstructInfo getConstructInfo();
- Type: ConstructInfo
Synthesized construct information defining jii resolution data.
logicalIdOptional
public java.lang.String getLogicalId();
- Type: java.lang.String
Logical id of the node, which is only unique within containing stack.
parentOptional
public Node getParent();
- Type: Node
Parent node.
stackOptional
public StackNode getStack();
- Type: StackNode
Stack the node is contained.
parameterTypeRequired
public java.lang.String getParameterType();
- Type: java.lang.String
Parameter type.
valueRequired
public java.lang.Object getValue();
- Type: java.lang.Object
Resolved value.
descriptionOptional
public java.lang.String getDescription();
- Type: java.lang.String
Description.
IReferenceProps
-
Extends: ITypedEdgeProps
-
Implemented By: IReferenceProps
Reference edge props.
Properties
| Name | Type | Description |
|---|---|---|
attributes |
java.util.Map |
Attributes. |
flags |
java.util.List<FlagEnum> |
Flags. |
metadata |
java.util.List |
Metadata entries. |
tags |
java.util.Map |
Tags. |
store |
Store |
Store. |
uuid |
java.lang.String |
UUID. |
source |
Node |
Edge source is the node that defines the edge (tail). |
target |
Node |
Edge target is the node being referenced by the source (head). |
referenceType |
ReferenceTypeEnum |
Type of reference. |
attributesOptional
public java.lang.Object getAttributes();
- Type: java.util.Map
PlainObject\ OR java.util.List\ PlainObject\>>
Attributes.
flagsOptional
public java.util.List<FlagEnum> getFlags();
- Type: java.util.List<FlagEnum>
Flags.
metadataOptional
public java.util.List<MetadataEntry> getMetadata();
- Type: java.util.List
Metadata entries.
tagsOptional
public java.util.Map<java.lang.String, java.lang.String> getTags();
- Type: java.util.Map
Tags.
storeRequired
public Store getStore();
- Type: Store
Store.
uuidRequired
public java.lang.String getUuid();
- Type: java.lang.String
UUID.
sourceRequired
public Node getSource();
- Type: Node
Edge source is the node that defines the edge (tail).
targetRequired
public Node getTarget();
- Type: Node
Edge target is the node being referenced by the source (head).
referenceTypeOptional
public ReferenceTypeEnum getReferenceType();
- Type: ReferenceTypeEnum
Type of reference.
IResourceNodeProps
-
Extends: ITypedNodeProps
-
Implemented By: IResourceNodeProps
ResourceNode props.
Properties
| Name | Type | Description |
|---|---|---|
attributes |
java.util.Map |
Attributes. |
flags |
java.util.List<FlagEnum> |
Flags. |
metadata |
java.util.List |
Metadata entries. |
tags |
java.util.Map |
Tags. |
store |
Store |
Store. |
uuid |
java.lang.String |
UUID. |
id |
java.lang.String |
Node id, which is unique within parent scope. |
path |
java.lang.String |
Path of the node. |
cfnType |
java.lang.String |
Type of CloudFormation resource. |
constructInfo |
ConstructInfo |
Synthesized construct information defining jii resolution data. |
logicalId |
java.lang.String |
Logical id of the node, which is only unique within containing stack. |
parent |
Node |
Parent node. |
stack |
StackNode |
Stack the node is contained. |
cdkOwned |
java.lang.Boolean |
Indicates if this resource is owned by cdk (defined in cdk library). |
nodeType |
NodeTypeEnum |
Type of node. |
attributesOptional
public java.lang.Object getAttributes();
- Type: java.util.Map
PlainObject\ OR java.util.List\ PlainObject\>>
Attributes.
flagsOptional
public java.util.List<FlagEnum> getFlags();
- Type: java.util.List<FlagEnum>
Flags.
metadataOptional
public java.util.List<MetadataEntry> getMetadata();
- Type: java.util.List
Metadata entries.
tagsOptional
public java.util.Map<java.lang.String, java.lang.String> getTags();
- Type: java.util.Map
Tags.
storeRequired
public Store getStore();
- Type: Store
Store.
uuidRequired
public java.lang.String getUuid();
- Type: java.lang.String
UUID.
idRequired
public java.lang.String getId();
- Type: java.lang.String
Node id, which is unique within parent scope.
pathRequired
public java.lang.String getPath();
- Type: java.lang.String
Path of the node.
cfnTypeOptional
public java.lang.String getCfnType();
- Type: java.lang.String
Type of CloudFormation resource.
constructInfoOptional
public ConstructInfo getConstructInfo();
- Type: ConstructInfo
Synthesized construct information defining jii resolution data.
logicalIdOptional
public java.lang.String getLogicalId();
- Type: java.lang.String
Logical id of the node, which is only unique within containing stack.
parentOptional
public Node getParent();
- Type: Node
Parent node.
stackOptional
public StackNode getStack();
- Type: StackNode
Stack the node is contained.
cdkOwnedRequired
public java.lang.Boolean getCdkOwned();
- Type: java.lang.Boolean
Indicates if this resource is owned by cdk (defined in cdk library).
nodeTypeOptional
public NodeTypeEnum getNodeType();
- Type: NodeTypeEnum
Type of node.
ISerializableEdge
- Implemented By: AttributeReference, Dependency, Edge, ImportReference, Reference, ISerializableEdge
Interface for serializable graph edge entity.
ISerializableEntity
- Implemented By: AppNode, AttributeReference, BaseEntity, CfnResourceNode, Dependency, Edge, ImportReference, NestedStackNode, Node, OutputNode, ParameterNode, Reference, ResourceNode, RootNode, StackNode, StageNode, ISerializableEntity
Interface for serializable graph entities.
ISerializableGraphStore
- Implemented By: Store, ISerializableGraphStore
Interface for serializable graph store.
Methods
| Name | Description |
|---|---|
serialize |
No description. |
serialize
public SGGraphStore serialize()
ISerializableNode
- Implemented By: AppNode, CfnResourceNode, NestedStackNode, Node, OutputNode, ParameterNode, ResourceNode, RootNode, StackNode, StageNode, ISerializableNode
Interface for serializable graph node entity.
IStackNodeProps
-
Extends: ITypedNodeProps
-
Implemented By: INestedStackNodeProps, IStackNodeProps
{@link StackNode} props.
Properties
| Name | Type | Description |
|---|---|---|
attributes |
java.util.Map |
Attributes. |
flags |
java.util.List<FlagEnum> |
Flags. |
metadata |
java.util.List |
Metadata entries. |
tags |
java.util.Map |
Tags. |
store |
Store |
Store. |
uuid |
java.lang.String |
UUID. |
id |
java.lang.String |
Node id, which is unique within parent scope. |
path |
java.lang.String |
Path of the node. |
cfnType |
java.lang.String |
Type of CloudFormation resource. |
constructInfo |
ConstructInfo |
Synthesized construct information defining jii resolution data. |
logicalId |
java.lang.String |
Logical id of the node, which is only unique within containing stack. |
parent |
Node |
Parent node. |
stack |
StackNode |
Stack the node is contained. |
nodeType |
NodeTypeEnum |
Type of node. |
attributesOptional
public java.lang.Object getAttributes();
- Type: java.util.Map
PlainObject\ OR java.util.List\ PlainObject\>>
Attributes.
flagsOptional
public java.util.List<FlagEnum> getFlags();
- Type: java.util.List<FlagEnum>
Flags.
metadataOptional
public java.util.List<MetadataEntry> getMetadata();
- Type: java.util.List
Metadata entries.
tagsOptional
public java.util.Map<java.lang.String, java.lang.String> getTags();
- Type: java.util.Map
Tags.
storeRequired
public Store getStore();
- Type: Store
Store.
uuidRequired
public java.lang.String getUuid();
- Type: java.lang.String
UUID.
idRequired
public java.lang.String getId();
- Type: java.lang.String
Node id, which is unique within parent scope.
pathRequired
public java.lang.String getPath();
- Type: java.lang.String
Path of the node.
cfnTypeOptional
public java.lang.String getCfnType();
- Type: java.lang.String
Type of CloudFormation resource.
constructInfoOptional
public ConstructInfo getConstructInfo();
- Type: ConstructInfo
Synthesized construct information defining jii resolution data.
logicalIdOptional
public java.lang.String getLogicalId();
- Type: java.lang.String
Logical id of the node, which is only unique within containing stack.
parentOptional
public Node getParent();
- Type: Node
Parent node.
stackOptional
public StackNode getStack();
- Type: StackNode
Stack the node is contained.
nodeTypeOptional
public NodeTypeEnum getNodeType();
- Type: NodeTypeEnum
Type of node.
IStoreCounts
- Implemented By: IStoreCounts
Interface for store counts.
Properties
| Name | Type | Description |
|---|---|---|
cfnResources |
java.util.Map |
Returns {@link ICounterRecord} containing total number of each cfnResourceType. |
edges |
java.lang.Number |
Counts total number of edges in the store. |
edgeTypes |
java.util.Map |
Returns {@link ICounterRecord} containing total number of each edge type ({@link EdgeTypeEnum}). |
nodes |
java.lang.Number |
Counts total number of nodes in the store. |
nodeTypes |
java.util.Map |
Returns {@link ICounterRecord} containing total number of each node type ({@link NodeTypeEnum}). |
stacks |
java.lang.Number |
Counts total number of stacks in the store. |
stages |
java.lang.Number |
Counts total number of stages in the store. |
cfnResourcesRequired
public java.util.Map<java.lang.String, java.lang.Number> getCfnResources();
- Type: java.util.Map
Returns {@link ICounterRecord} containing total number of each cfnResourceType.
edgesRequired
public java.lang.Number getEdges();
- Type: java.lang.Number
Counts total number of edges in the store.
edgeTypesRequired
public java.util.Map<java.lang.String, java.lang.Number> getEdgeTypes();
- Type: java.util.Map
Returns {@link ICounterRecord} containing total number of each edge type ({@link EdgeTypeEnum}).
nodesRequired
public java.lang.Number getNodes();
- Type: java.lang.Number
Counts total number of nodes in the store.
nodeTypesRequired
public java.util.Map<java.lang.String, java.lang.Number> getNodeTypes();
- Type: java.util.Map
Returns {@link ICounterRecord} containing total number of each node type ({@link NodeTypeEnum}).
stacksRequired
public java.lang.Number getStacks();
- Type: java.lang.Number
Counts total number of stacks in the store.
stagesRequired
public java.lang.Number getStages();
- Type: java.lang.Number
Counts total number of stages in the store.
ITypedEdgeProps
-
Extends: IBaseEntityProps
-
Implemented By: IAttributeReferenceProps, IEdgeProps, IReferenceProps, ITypedEdgeProps
Base edge props agnostic to edge type.
Used for extending per edge class with type specifics.
Properties
| Name | Type | Description |
|---|---|---|
attributes |
java.util.Map |
Attributes. |
flags |
java.util.List<FlagEnum> |
Flags. |
metadata |
java.util.List |
Metadata entries. |
tags |
java.util.Map |
Tags. |
store |
Store |
Store. |
uuid |
java.lang.String |
UUID. |
source |
Node |
Edge source is the node that defines the edge (tail). |
target |
Node |
Edge target is the node being referenced by the source (head). |
attributesOptional
public java.lang.Object getAttributes();
- Type: java.util.Map
PlainObject\ OR java.util.List\ PlainObject\>>
Attributes.
flagsOptional
public java.util.List<FlagEnum> getFlags();
- Type: java.util.List<FlagEnum>
Flags.
metadataOptional
public java.util.List<MetadataEntry> getMetadata();
- Type: java.util.List
Metadata entries.
tagsOptional
public java.util.Map<java.lang.String, java.lang.String> getTags();
- Type: java.util.Map
Tags.
storeRequired
public Store getStore();
- Type: Store
Store.
uuidRequired
public java.lang.String getUuid();
- Type: java.lang.String
UUID.
sourceRequired
public Node getSource();
- Type: Node
Edge source is the node that defines the edge (tail).
targetRequired
public Node getTarget();
- Type: Node
Edge target is the node being referenced by the source (head).
ITypedNodeProps
-
Extends: IBaseEntityProps
-
Implemented By: ICfnResourceNodeProps, INestedStackNodeProps, INodeProps, IOutputNodeProps, IParameterNodeProps, IResourceNodeProps, IStackNodeProps, ITypedNodeProps
Base node props agnostic to node type.
Used for extending per node class with type specifics.
Properties
| Name | Type | Description |
|---|---|---|
attributes |
java.util.Map |
Attributes. |
flags |
java.util.List<FlagEnum> |
Flags. |
metadata |
java.util.List |
Metadata entries. |
tags |
java.util.Map |
Tags. |
store |
Store |
Store. |
uuid |
java.lang.String |
UUID. |
id |
java.lang.String |
Node id, which is unique within parent scope. |
path |
java.lang.String |
Path of the node. |
cfnType |
java.lang.String |
Type of CloudFormation resource. |
constructInfo |
ConstructInfo |
Synthesized construct information defining jii resolution data. |
logicalId |
java.lang.String |
Logical id of the node, which is only unique within containing stack. |
parent |
Node |
Parent node. |
stack |
StackNode |
Stack the node is contained. |
attributesOptional
public java.lang.Object getAttributes();
- Type: java.util.Map
PlainObject\ OR java.util.List\ PlainObject\>>
Attributes.
flagsOptional
public java.util.List<FlagEnum> getFlags();
- Type: java.util.List<FlagEnum>
Flags.
metadataOptional
public java.util.List<MetadataEntry> getMetadata();
- Type: java.util.List
Metadata entries.
tagsOptional
public java.util.Map<java.lang.String, java.lang.String> getTags();
- Type: java.util.Map
Tags.
storeRequired
public Store getStore();
- Type: Store
Store.
uuidRequired
public java.lang.String getUuid();
- Type: java.lang.String
UUID.
idRequired
public java.lang.String getId();
- Type: java.lang.String
Node id, which is unique within parent scope.
pathRequired
public java.lang.String getPath();
- Type: java.lang.String
Path of the node.
cfnTypeOptional
public java.lang.String getCfnType();
- Type: java.lang.String
Type of CloudFormation resource.
constructInfoOptional
public ConstructInfo getConstructInfo();
- Type: ConstructInfo
Synthesized construct information defining jii resolution data.
logicalIdOptional
public java.lang.String getLogicalId();
- Type: java.lang.String
Logical id of the node, which is only unique within containing stack.
parentOptional
public Node getParent();
- Type: Node
Parent node.
stackOptional
public StackNode getStack();
- Type: StackNode
Stack the node is contained.
Enums
CdkConstructIds
Common cdk construct ids.
Members
| Name | Description |
|---|---|
DEFAULT |
No description. |
RESOURCE |
No description. |
EXPORTS |
No description. |
DEFAULT
RESOURCE
EXPORTS
CdkGraphArtifacts
CdkGraph core artifacts.
Members
| Name | Description |
|---|---|
GRAPH_METADATA |
No description. |
GRAPH |
No description. |
GRAPH_METADATA
GRAPH
CfnAttributesEnum
Common cfn attribute keys.
Members
| Name | Description |
|---|---|
TYPE |
No description. |
PROPS |
No description. |
TYPE
PROPS
ConstructInfoFqnEnum
Commonly used cdk construct info fqn (jsii fully-qualified ids).
Members
| Name | Description |
|---|---|
APP |
No description. |
PDKAPP_MONO |
No description. |
PDKAPP |
No description. |
STAGE |
No description. |
STACK |
No description. |
NESTED_STACK |
No description. |
CFN_STACK |
No description. |
CFN_OUTPUT |
No description. |
CFN_PARAMETER |
No description. |
CUSTOM_RESOURCE |
No description. |
AWS_CUSTOM_RESOURCE |
No description. |
CUSTOM_RESOURCE_PROVIDER |
No description. |
CUSTOM_RESOURCE_PROVIDER_2 |
No description. |
LAMBDA |
No description. |
CFN_LAMBDA |
No description. |
LAMBDA_LAYER_VERSION |
No description. |
CFN_LAMBDA_LAYER_VERSION |
No description. |
LAMBDA_ALIAS |
No description. |
CFN_LAMBDA_ALIAS |
No description. |
LAMBDA_BASE |
No description. |
LAMBDA_SINGLETON |
No description. |
LAMBDA_LAYER_AWSCLI |
No description. |
CFN_LAMBDA_PERMISSIONS |
No description. |
ASSET_STAGING |
No description. |
S3_ASSET |
No description. |
ECR_TARBALL_ASSET |
No description. |
EC2_INSTANCE |
No description. |
CFN_EC2_INSTANCE |
No description. |
SECURITY_GROUP |
No description. |
CFN_SECURITY_GROUP |
No description. |
VPC |
No description. |
CFN_VPC |
No description. |
PRIVATE_SUBNET |
No description. |
CFN_PRIVATE_SUBNET |
No description. |
PUBLIC_SUBNET |
No description. |
CFN_PUBLIC_SUBNET |
No description. |
IAM_ROLE |
No description. |
APP
PDKAPP_MONO
PDKAPP
STAGE
STACK
NESTED_STACK
CFN_STACK
CFN_OUTPUT
CFN_PARAMETER
CUSTOM_RESOURCE
AWS_CUSTOM_RESOURCE
CUSTOM_RESOURCE_PROVIDER
CUSTOM_RESOURCE_PROVIDER_2
LAMBDA
CFN_LAMBDA
LAMBDA_LAYER_VERSION
CFN_LAMBDA_LAYER_VERSION
LAMBDA_ALIAS
CFN_LAMBDA_ALIAS
LAMBDA_BASE
LAMBDA_SINGLETON
LAMBDA_LAYER_AWSCLI
CFN_LAMBDA_PERMISSIONS
ASSET_STAGING
S3_ASSET
ECR_TARBALL_ASSET
EC2_INSTANCE
CFN_EC2_INSTANCE
SECURITY_GROUP
CFN_SECURITY_GROUP
VPC
CFN_VPC
PRIVATE_SUBNET
CFN_PRIVATE_SUBNET
PUBLIC_SUBNET
CFN_PUBLIC_SUBNET
IAM_ROLE
EdgeDirectionEnum
EdgeDirection specifies in which direction the edge is directed or if it is undirected.
Members
| Name | Description |
|---|---|
NONE |
Indicates that edge is undirected; |
FORWARD |
Indicates the edge is directed from the source to the target. |
BACK |
Indicates the edge is directed from the target to the source. |
BOTH |
Indicates the edge is bi-directional. |
NONE
Indicates that edge is undirected;
meaning there is no directional relationship between the source and target.
FORWARD
Indicates the edge is directed from the source to the target.
BACK
Indicates the edge is directed from the target to the source.
BOTH
Indicates the edge is bi-directional.
EdgeTypeEnum
Edge types handles by the graph.
Members
| Name | Description |
|---|---|
CUSTOM |
Custom edge. |
REFERENCE |
Reference edge (Ref, Fn::GetAtt, Fn::ImportValue). |
DEPENDENCY |
CloudFormation dependency edge. |
CUSTOM
Custom edge.
REFERENCE
Reference edge (Ref, Fn::GetAtt, Fn::ImportValue).
DEPENDENCY
CloudFormation dependency edge.
FilterPreset
Filter presets.
Members
| Name | Description |
|---|---|
COMPACT |
Collapses extraneous nodes to parent and cdk created nodes on themselves, and prunes extraneous edges. |
NON_EXTRANEOUS |
Collapses extraneous nodes to parent and prunes extraneous edges. |
NONE |
No filtering is performed which will output verbose graph. |
COMPACT
Collapses extraneous nodes to parent and cdk created nodes on themselves, and prunes extraneous edges.
This most closely represents the developers code for the current application and reduces the noise one expects.
NON_EXTRANEOUS
Collapses extraneous nodes to parent and prunes extraneous edges.
NONE
No filtering is performed which will output verbose graph.
FilterStrategy
Filter strategy to apply to filter matches.
Members
| Name | Description |
|---|---|
PRUNE |
Remove filtered entity and all its edges. |
COLLAPSE |
Collapse all child entities of filtered entity into filtered entity; |
COLLAPSE_TO_PARENT |
Collapse all filtered entities into their parent entity; |
PRUNE
Remove filtered entity and all its edges.
COLLAPSE
Collapse all child entities of filtered entity into filtered entity;
and hoist all edges.
COLLAPSE_TO_PARENT
Collapse all filtered entities into their parent entity;
and hoist its edges to parent.
FlagEnum
Graph flags.
Members
| Name | Description |
|---|---|
CLUSTER |
Indicates that node is a cluster (container) and treated like an emphasized subgraph. |
GRAPH_CONTAINER |
Indicates that node is non-resource container (Root, App) and used for structural purpose in the graph only. |
EXTRANEOUS |
Indicates that the entity is extraneous and considered collapsible to parent without impact of intent. |
ASSET |
Indicates node is considered a CDK Asset (Lambda Code, Docker Image, etc). |
CDK_OWNED |
Indicates that node was created by CDK. |
CFN_FQN |
Indicates node ConstructInfoFqn denotes a aws-cdk-lib.*.Cfn* construct. |
CLOSED_EDGE |
Indicates that edge is closed; |
MUTATED |
Indicates that entity was mutated; |
IMPORT |
Indicates that resource is imported into CDK (eg: lambda.Function.fromFunctionName(), s3.Bucket.fromBucketArn()). |
CUSTOM_RESOURCE |
Indicates if node is a CustomResource. |
AWS_CUSTOM_RESOURCE |
Indicates if node is an AwsCustomResource, which is a custom resource that simply calls the AWS SDK API via singleton provider. |
AWS_API_CALL_LAMBDA |
Indicates if lambda function resource is a singleton AWS API call lambda for AwsCustomResources. |
CLUSTER
Indicates that node is a cluster (container) and treated like an emphasized subgraph.
GRAPH_CONTAINER
Indicates that node is non-resource container (Root, App) and used for structural purpose in the graph only.
EXTRANEOUS
Indicates that the entity is extraneous and considered collapsible to parent without impact of intent.
ASSET
Indicates node is considered a CDK Asset (Lambda Code, Docker Image, etc).
CDK_OWNED
Indicates that node was created by CDK.
CFN_FQN
Indicates node ConstructInfoFqn denotes a aws-cdk-lib.*.Cfn* construct.
CLOSED_EDGE
Indicates that edge is closed;
meaning source === target. This flag only gets applied on creation of edge, not during mutations to maintain initial intent.
MUTATED
Indicates that entity was mutated;
meaning a mutation was performed to change originally computed graph value.
IMPORT
Indicates that resource is imported into CDK (eg: lambda.Function.fromFunctionName(), s3.Bucket.fromBucketArn()).
CUSTOM_RESOURCE
Indicates if node is a CustomResource.
https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.custom_resources-readme.html
AWS_CUSTOM_RESOURCE
Indicates if node is an AwsCustomResource, which is a custom resource that simply calls the AWS SDK API via singleton provider.
https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.custom_resources.AwsCustomResource.html
AWS_API_CALL_LAMBDA
Indicates if lambda function resource is a singleton AWS API call lambda for AwsCustomResources.
https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.custom_resources.AwsCustomResource.html
MetadataTypeEnum
Common cdk metadata types.
Members
| Name | Description |
|---|---|
LOGICAL_ID |
No description. |
LOGICAL_ID
NodeTypeEnum
Node types handled by the graph.
Members
| Name | Description |
|---|---|
DEFAULT |
Default node type - used for all nodes that don't have explicit type defined. |
CFN_RESOURCE |
L1 cfn resource node. |
RESOURCE |
L2 cdk resource node. |
CUSTOM_RESOURCE |
Cdk customer resource node. |
ROOT |
Graph root node. |
APP |
Cdk App node. |
STAGE |
Cdk Stage node. |
STACK |
Cdk Stack node. |
NESTED_STACK |
Cdk NestedStack node. |
OUTPUT |
CfnOutput node. |
PARAMETER |
CfnParameter node. |
ASSET |
Cdk asset node. |
DEFAULT
Default node type - used for all nodes that don't have explicit type defined.
CFN_RESOURCE
L1 cfn resource node.
RESOURCE
L2 cdk resource node.
CUSTOM_RESOURCE
Cdk customer resource node.
ROOT
Graph root node.
APP
Cdk App node.
STAGE
Cdk Stage node.
STACK
Cdk Stack node.
NESTED_STACK
Cdk NestedStack node.
OUTPUT
CfnOutput node.
PARAMETER
CfnParameter node.
ASSET
Cdk asset node.
ReferenceTypeEnum
Reference edge types.
Members
| Name | Description |
|---|---|
REF |
CloudFormation Ref reference. |
ATTRIBUTE |
CloudFormation Fn::GetAtt reference. |
IMPORT |
CloudFormation Fn::ImportValue reference. |
IMPORT_ARN |
CloudFormation Fn::Join reference of imported resourced (eg: s3.Bucket.fromBucketArn()). |
REF
CloudFormation Ref reference.
ATTRIBUTE
CloudFormation Fn::GetAtt reference.
IMPORT
CloudFormation Fn::ImportValue reference.
IMPORT_ARN
CloudFormation Fn::Join reference of imported resourced (eg: s3.Bucket.fromBucketArn()).