Class: Aws::Glue::Types::WorkflowGraph
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::WorkflowGraph
- Defined in:
- gems/aws-sdk-glue/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.
28147 28148 28149 28150 28151 28152 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 28147 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.
28147 28148 28149 28150 28151 28152 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 28147 class WorkflowGraph < Struct.new( :nodes, :edges) SENSITIVE = [] include Aws::Structure end |