Class: Aws::Glue::Types::CodeGenNode
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::CodeGenNode
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
Note:
When making an API call, you may pass CodeGenNode data as a hash:
{
id: "CodeGenIdentifier", # required
node_type: "CodeGenNodeType", # required
args: [ # required
{
name: "CodeGenArgName", # required
value: "CodeGenArgValue", # required
param: false,
},
],
line_number: 1,
}
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.
1407 1408 1409 1410 1411 1412 1413 1414 |
# File 'lib/aws-sdk-glue/types.rb', line 1407 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.
1407 1408 1409 1410 1411 1412 1413 1414 |
# File 'lib/aws-sdk-glue/types.rb', line 1407 class CodeGenNode < Struct.new( :id, :node_type, :args, :line_number) SENSITIVE = [] include Aws::Structure end |
#line_number ⇒ Integer
The line number of the node.
1407 1408 1409 1410 1411 1412 1413 1414 |
# File 'lib/aws-sdk-glue/types.rb', line 1407 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.
1407 1408 1409 1410 1411 1412 1413 1414 |
# File 'lib/aws-sdk-glue/types.rb', line 1407 class CodeGenNode < Struct.new( :id, :node_type, :args, :line_number) SENSITIVE = [] include Aws::Structure end |