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

Description

 
Synopsis

Documentation

data Edge Source #

An edge represents a directed connection between two components on a workflow graph.

See: newEdge smart constructor.

Constructors

Edge' 

Fields

Instances

Instances details
Eq Edge Source # 
Instance details

Defined in Amazonka.Glue.Types.Edge

Methods

(==) :: Edge -> Edge -> Bool #

(/=) :: Edge -> Edge -> Bool #

Read Edge Source # 
Instance details

Defined in Amazonka.Glue.Types.Edge

Show Edge Source # 
Instance details

Defined in Amazonka.Glue.Types.Edge

Methods

showsPrec :: Int -> Edge -> ShowS #

show :: Edge -> String #

showList :: [Edge] -> ShowS #

Generic Edge Source # 
Instance details

Defined in Amazonka.Glue.Types.Edge

Associated Types

type Rep Edge :: Type -> Type #

Methods

from :: Edge -> Rep Edge x #

to :: Rep Edge x -> Edge #

NFData Edge Source # 
Instance details

Defined in Amazonka.Glue.Types.Edge

Methods

rnf :: Edge -> () #

Hashable Edge Source # 
Instance details

Defined in Amazonka.Glue.Types.Edge

Methods

hashWithSalt :: Int -> Edge -> Int #

hash :: Edge -> Int #

FromJSON Edge Source # 
Instance details

Defined in Amazonka.Glue.Types.Edge

type Rep Edge Source # 
Instance details

Defined in Amazonka.Glue.Types.Edge

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

newEdge :: Edge Source #

Create a value of Edge 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:sourceId:Edge', edge_sourceId - The unique of the node within the workflow where the edge starts.

$sel:destinationId:Edge', edge_destinationId - The unique of the node within the workflow where the edge ends.

edge_sourceId :: Lens' Edge (Maybe Text) Source #

The unique of the node within the workflow where the edge starts.

edge_destinationId :: Lens' Edge (Maybe Text) Source #

The unique of the node within the workflow where the edge ends.