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 AWS 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.
6211 6212 6213 6214 6215 6216 |
# File 'lib/aws-sdk-glue/types.rb', line 6211 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.
6211 6212 6213 6214 6215 6216 |
# File 'lib/aws-sdk-glue/types.rb', line 6211 class Edge < Struct.new( :source_id, :destination_id) SENSITIVE = [] include Aws::Structure end |