GraphEdgeArgs

data class GraphEdgeArgs(val sourceNodeId: Output<String>? = null, val sourcePortId: Output<String>? = null, val targetNodeId: Output<String>? = null, val targetPortId: Output<String>? = null) : ConvertibleToJava<GraphEdgeArgs>

Defines an edge within the web service's graph.

Constructors

Link copied to clipboard
constructor(sourceNodeId: Output<String>? = null, sourcePortId: Output<String>? = null, targetNodeId: Output<String>? = null, targetPortId: Output<String>? = null)

Properties

Link copied to clipboard
val sourceNodeId: Output<String>? = null

The source graph node's identifier.

Link copied to clipboard
val sourcePortId: Output<String>? = null

The identifier of the source node's port that the edge connects from.

Link copied to clipboard
val targetNodeId: Output<String>? = null

The destination graph node's identifier.

Link copied to clipboard
val targetPortId: Output<String>? = null

The identifier of the destination node's port that the edge connects into.

Functions

Link copied to clipboard
open override fun toJava(): GraphEdgeArgs