Class: Aws::Glue::Types::CodeGenNode
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::CodeGenNode
- Includes:
- Structure
- Defined in:
- 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.
2627 2628 2629 2630 2631 2632 2633 2634 |
# File 'lib/aws-sdk-glue/types.rb', line 2627 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.
2627 2628 2629 2630 2631 2632 2633 2634 |
# File 'lib/aws-sdk-glue/types.rb', line 2627 class CodeGenNode < Struct.new( :id, :node_type, :args, :line_number) SENSITIVE = [] include Aws::Structure end |
#line_number ⇒ Integer
The line number of the node.
2627 2628 2629 2630 2631 2632 2633 2634 |
# File 'lib/aws-sdk-glue/types.rb', line 2627 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.
2627 2628 2629 2630 2631 2632 2633 2634 |
# File 'lib/aws-sdk-glue/types.rb', line 2627 class CodeGenNode < Struct.new( :id, :node_type, :args, :line_number) SENSITIVE = [] include Aws::Structure end |