Class: Aws::Glue::Types::Edge
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::Edge
- Includes:
- Structure
- Defined in:
- 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
-
#destination_id ⇒ String
The unique of the node within the workflow where the edge ends.
-
#source_id ⇒ String
The unique of the node within the workflow where the edge starts.
Instance Attribute Details
#destination_id ⇒ String
The unique of the node within the workflow where the edge ends.
8560 8561 8562 8563 8564 8565 |
# File 'lib/aws-sdk-glue/types.rb', line 8560 class Edge < Struct.new( :source_id, :destination_id) SENSITIVE = [] include Aws::Structure end |
#source_id ⇒ String
The unique of the node within the workflow where the edge starts.
8560 8561 8562 8563 8564 8565 |
# File 'lib/aws-sdk-glue/types.rb', line 8560 class Edge < Struct.new( :source_id, :destination_id) SENSITIVE = [] include Aws::Structure end |