libZSservicesZSamazonka-glueZSamazonka-glue
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.Glue.Types.WorkflowGraph

Description

 
Synopsis

Documentation

data WorkflowGraph Source #

A workflow graph represents the complete workflow containing all the Glue components present in the workflow and all the directed connections between them.

See: newWorkflowGraph smart constructor.

Constructors

WorkflowGraph' 

Fields

  • edges :: Maybe [Edge]

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

  • nodes :: Maybe [Node]

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

Instances

Instances details
Eq WorkflowGraph Source # 
Instance details

Defined in Amazonka.Glue.Types.WorkflowGraph

Read WorkflowGraph Source # 
Instance details

Defined in Amazonka.Glue.Types.WorkflowGraph

Show WorkflowGraph Source # 
Instance details

Defined in Amazonka.Glue.Types.WorkflowGraph

Generic WorkflowGraph Source # 
Instance details

Defined in Amazonka.Glue.Types.WorkflowGraph

Associated Types

type Rep WorkflowGraph :: Type -> Type #

NFData WorkflowGraph Source # 
Instance details

Defined in Amazonka.Glue.Types.WorkflowGraph

Methods

rnf :: WorkflowGraph -> () #

Hashable WorkflowGraph Source # 
Instance details

Defined in Amazonka.Glue.Types.WorkflowGraph

FromJSON WorkflowGraph Source # 
Instance details

Defined in Amazonka.Glue.Types.WorkflowGraph

type Rep WorkflowGraph Source # 
Instance details

Defined in Amazonka.Glue.Types.WorkflowGraph

type Rep WorkflowGraph = D1 ('MetaData "WorkflowGraph" "Amazonka.Glue.Types.WorkflowGraph" "libZSservicesZSamazonka-glueZSamazonka-glue" 'False) (C1 ('MetaCons "WorkflowGraph'" 'PrefixI 'True) (S1 ('MetaSel ('Just "edges") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Edge])) :*: S1 ('MetaSel ('Just "nodes") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Node]))))

newWorkflowGraph :: WorkflowGraph Source #

Create a value of WorkflowGraph with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:edges:WorkflowGraph', workflowGraph_edges - A list of all the directed connections between the nodes belonging to the workflow.

$sel:nodes:WorkflowGraph', workflowGraph_nodes - A list of the the Glue components belong to the workflow represented as nodes.

workflowGraph_edges :: Lens' WorkflowGraph (Maybe [Edge]) Source #

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

workflowGraph_nodes :: Lens' WorkflowGraph (Maybe [Node]) Source #

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