Class: Aws::Glue::Types::CodeGenEdge
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::CodeGenEdge
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
Note:
When making an API call, you may pass CodeGenEdge data as a hash:
{
source: "CodeGenIdentifier", # required
target: "CodeGenIdentifier", # required
target_parameter: "CodeGenArgName",
}
Represents a directional edge in a directed acyclic graph (DAG).
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#source ⇒ String
The ID of the node at which the edge starts.
-
#target ⇒ String
The ID of the node at which the edge ends.
-
#target_parameter ⇒ String
The target of the edge.
Instance Attribute Details
#source ⇒ String
The ID of the node at which the edge starts.
1363 1364 1365 1366 1367 1368 1369 |
# File 'lib/aws-sdk-glue/types.rb', line 1363 class CodeGenEdge < Struct.new( :source, :target, :target_parameter) SENSITIVE = [] include Aws::Structure end |
#target ⇒ String
The ID of the node at which the edge ends.
1363 1364 1365 1366 1367 1368 1369 |
# File 'lib/aws-sdk-glue/types.rb', line 1363 class CodeGenEdge < Struct.new( :source, :target, :target_parameter) SENSITIVE = [] include Aws::Structure end |
#target_parameter ⇒ String
The target of the edge.
1363 1364 1365 1366 1367 1368 1369 |
# File 'lib/aws-sdk-glue/types.rb', line 1363 class CodeGenEdge < Struct.new( :source, :target, :target_parameter) SENSITIVE = [] include Aws::Structure end |