Class: Aws::Glue::Types::WorkflowGraph
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::WorkflowGraph
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
A workflow graph represents the complete workflow containing all the Glue components present in the workflow and all the directed connections between them.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#edges ⇒ Array<Types::Edge>
A list of all the directed connections between the nodes belonging to the workflow.
-
#nodes ⇒ Array<Types::Node>
A list of the the Glue components belong to the workflow represented as nodes.
Instance Attribute Details
#edges ⇒ Array<Types::Edge>
A list of all the directed connections between the nodes belonging to the workflow.
25551 25552 25553 25554 25555 25556 |
# File 'lib/aws-sdk-glue/types.rb', line 25551 class WorkflowGraph < Struct.new( :nodes, :edges) SENSITIVE = [] include Aws::Structure end |
#nodes ⇒ Array<Types::Node>
A list of the the Glue components belong to the workflow represented as nodes.
25551 25552 25553 25554 25555 25556 |
# File 'lib/aws-sdk-glue/types.rb', line 25551 class WorkflowGraph < Struct.new( :nodes, :edges) SENSITIVE = [] include Aws::Structure end |