Class: Aws::Glue::Types::CodeGenNode
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Glue::Types::CodeGenNode
 
- Defined in:
- gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb
Overview
Represents a node in a directed acyclic graph (DAG)
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #args  ⇒ Array<Types::CodeGenNodeArg> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Properties of the node, in the form of name-value pairs. 
- 
  
    
      #id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A node identifier that is unique within the node's graph. 
- 
  
    
      #line_number  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The line number of the node. 
- 
  
    
      #node_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The type of node that this is. 
Instance Attribute Details
#args ⇒ Array<Types::CodeGenNodeArg>
Properties of the node, in the form of name-value pairs.
| 3105 3106 3107 3108 3109 3110 3111 3112 | # File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 3105 class CodeGenNode < Struct.new( :id, :node_type, :args, :line_number) SENSITIVE = [] include Aws::Structure end | 
#id ⇒ String
A node identifier that is unique within the node's graph.
| 3105 3106 3107 3108 3109 3110 3111 3112 | # File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 3105 class CodeGenNode < Struct.new( :id, :node_type, :args, :line_number) SENSITIVE = [] include Aws::Structure end | 
#line_number ⇒ Integer
The line number of the node.
| 3105 3106 3107 3108 3109 3110 3111 3112 | # File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 3105 class CodeGenNode < Struct.new( :id, :node_type, :args, :line_number) SENSITIVE = [] include Aws::Structure end | 
#node_type ⇒ String
The type of node that this is.
| 3105 3106 3107 3108 3109 3110 3111 3112 | # File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 3105 class CodeGenNode < Struct.new( :id, :node_type, :args, :line_number) SENSITIVE = [] include Aws::Structure end |