Class: Aws::Glue::Types::WorkflowGraph

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#edgesArray<Types::Edge>

A list of all the directed connections between the nodes belonging to the workflow.

Returns:



23331
23332
23333
23334
23335
23336
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 23331

class WorkflowGraph < Struct.new(
  :nodes,
  :edges)
  SENSITIVE = []
  include Aws::Structure
end

#nodesArray<Types::Node>

A list of the the Glue components belong to the workflow represented as nodes.

Returns:



23331
23332
23333
23334
23335
23336
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 23331

class WorkflowGraph < Struct.new(
  :nodes,
  :edges)
  SENSITIVE = []
  include Aws::Structure
end