Class: Aws::Glue::Types::Edge

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb

Overview

An edge represents a directed connection between two Glue components that are part of the workflow the edge belongs to.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#destination_idString

The unique of the node within the workflow where the edge ends.

Returns:

  • (String)


8560
8561
8562
8563
8564
8565
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 8560

class Edge < Struct.new(
  :source_id,
  :destination_id)
  SENSITIVE = []
  include Aws::Structure
end

#source_idString

The unique of the node within the workflow where the edge starts.

Returns:

  • (String)


8560
8561
8562
8563
8564
8565
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 8560

class Edge < Struct.new(
  :source_id,
  :destination_id)
  SENSITIVE = []
  include Aws::Structure
end