Class: Aws::Glue::Types::CodeGenEdge

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#sourceString

The ID of the node at which the edge starts.

Returns:

  • (String)


2463
2464
2465
2466
2467
2468
2469
# File 'lib/aws-sdk-glue/types.rb', line 2463

class CodeGenEdge < Struct.new(
  :source,
  :target,
  :target_parameter)
  SENSITIVE = []
  include Aws::Structure
end

#targetString

The ID of the node at which the edge ends.

Returns:

  • (String)


2463
2464
2465
2466
2467
2468
2469
# File 'lib/aws-sdk-glue/types.rb', line 2463

class CodeGenEdge < Struct.new(
  :source,
  :target,
  :target_parameter)
  SENSITIVE = []
  include Aws::Structure
end

#target_parameterString

The target of the edge.

Returns:

  • (String)


2463
2464
2465
2466
2467
2468
2469
# File 'lib/aws-sdk-glue/types.rb', line 2463

class CodeGenEdge < Struct.new(
  :source,
  :target,
  :target_parameter)
  SENSITIVE = []
  include Aws::Structure
end