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.
28080 28081 28082 28083 28084 28085 |
# File 'lib/aws-sdk-glue/types.rb', line 28080 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.
28080 28081 28082 28083 28084 28085 |
# File 'lib/aws-sdk-glue/types.rb', line 28080 class WorkflowGraph < Struct.new( :nodes, :edges) SENSITIVE = [] include Aws::Structure end |