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.
2905 2906 2907 2908 2909 2910 2911 |
# File 'lib/aws-sdk-glue/types.rb', line 2905 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.
2905 2906 2907 2908 2909 2910 2911 |
# File 'lib/aws-sdk-glue/types.rb', line 2905 class CodeGenEdge < Struct.new( :source, :target, :target_parameter) SENSITIVE = [] include Aws::Structure end |
#target_parameter ⇒ String
The target of the edge.
2905 2906 2907 2908 2909 2910 2911 |
# File 'lib/aws-sdk-glue/types.rb', line 2905 class CodeGenEdge < Struct.new( :source, :target, :target_parameter) SENSITIVE = [] include Aws::Structure end |