You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::Glue::Types::CodeGenNode

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing CodeGenNode as input to an Aws::Client method, you can use a vanilla 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)

Instance Attribute Summary collapse

Instance Attribute Details

#argsArray<Types::CodeGenNodeArg>

Properties of the node, in the form of name-value pairs.

Returns:

#idString

A node identifier that is unique within the node\'s graph.

Returns:

  • (String)

    A node identifier that is unique within the node\'s graph.

#line_numberInteger

The line number of the node.

Returns:

  • (Integer)

    The line number of the node.

#node_typeString

The type of node that this is.

Returns:

  • (String)

    The type of node that this is.