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.
| 28178 28179 28180 28181 28182 28183 | # File 'lib/aws-sdk-glue/types.rb', line 28178 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.
| 28178 28179 28180 28181 28182 28183 | # File 'lib/aws-sdk-glue/types.rb', line 28178 class WorkflowGraph < Struct.new( :nodes, :edges) SENSITIVE = [] include Aws::Structure end |