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.CodeGenEdge

Description

 
Synopsis

Documentation

data CodeGenEdge Source #

Represents a directional edge in a directed acyclic graph (DAG).

See: newCodeGenEdge smart constructor.

Constructors

CodeGenEdge' 

Fields

Instances

Instances details
Eq CodeGenEdge Source # 
Instance details

Defined in Amazonka.Glue.Types.CodeGenEdge

Read CodeGenEdge Source # 
Instance details

Defined in Amazonka.Glue.Types.CodeGenEdge

Show CodeGenEdge Source # 
Instance details

Defined in Amazonka.Glue.Types.CodeGenEdge

Generic CodeGenEdge Source # 
Instance details

Defined in Amazonka.Glue.Types.CodeGenEdge

Associated Types

type Rep CodeGenEdge :: Type -> Type #

NFData CodeGenEdge Source # 
Instance details

Defined in Amazonka.Glue.Types.CodeGenEdge

Methods

rnf :: CodeGenEdge -> () #

Hashable CodeGenEdge Source # 
Instance details

Defined in Amazonka.Glue.Types.CodeGenEdge

ToJSON CodeGenEdge Source # 
Instance details

Defined in Amazonka.Glue.Types.CodeGenEdge

FromJSON CodeGenEdge Source # 
Instance details

Defined in Amazonka.Glue.Types.CodeGenEdge

type Rep CodeGenEdge Source # 
Instance details

Defined in Amazonka.Glue.Types.CodeGenEdge

type Rep CodeGenEdge = D1 ('MetaData "CodeGenEdge" "Amazonka.Glue.Types.CodeGenEdge" "libZSservicesZSamazonka-glueZSamazonka-glue" 'False) (C1 ('MetaCons "CodeGenEdge'" 'PrefixI 'True) (S1 ('MetaSel ('Just "targetParameter") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "source") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "target") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newCodeGenEdge Source #

Create a value of CodeGenEdge 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:targetParameter:CodeGenEdge', codeGenEdge_targetParameter - The target of the edge.

$sel:source:CodeGenEdge', codeGenEdge_source - The ID of the node at which the edge starts.

$sel:target:CodeGenEdge', codeGenEdge_target - The ID of the node at which the edge ends.

codeGenEdge_source :: Lens' CodeGenEdge Text Source #

The ID of the node at which the edge starts.

codeGenEdge_target :: Lens' CodeGenEdge Text Source #

The ID of the node at which the edge ends.