Class: Aws::Glue::Types::CodeGenEdge
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::CodeGenEdge
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
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.
2599 2600 2601 2602 2603 2604 2605 |
# File 'lib/aws-sdk-glue/types.rb', line 2599 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.
2599 2600 2601 2602 2603 2604 2605 |
# File 'lib/aws-sdk-glue/types.rb', line 2599 class CodeGenEdge < Struct.new( :source, :target, :target_parameter) SENSITIVE = [] include Aws::Structure end |
#target_parameter ⇒ String
The target of the edge.
2599 2600 2601 2602 2603 2604 2605 |
# File 'lib/aws-sdk-glue/types.rb', line 2599 class CodeGenEdge < Struct.new( :source, :target, :target_parameter) SENSITIVE = [] include Aws::Structure end |