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.
| 2931 2932 2933 2934 2935 2936 2937 | # File 'lib/aws-sdk-glue/types.rb', line 2931 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.
| 2931 2932 2933 2934 2935 2936 2937 | # File 'lib/aws-sdk-glue/types.rb', line 2931 class CodeGenEdge < Struct.new( :source, :target, :target_parameter) SENSITIVE = [] include Aws::Structure end | 
#target_parameter ⇒ String
The target of the edge.
| 2931 2932 2933 2934 2935 2936 2937 | # File 'lib/aws-sdk-glue/types.rb', line 2931 class CodeGenEdge < Struct.new( :source, :target, :target_parameter) SENSITIVE = [] include Aws::Structure end |