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

Description

 
Synopsis

Documentation

data Node Source #

A node represents an Glue component (trigger, crawler, or job) on a workflow graph.

See: newNode smart constructor.

Constructors

Node' 

Fields

Instances

Instances details
Eq Node Source # 
Instance details

Defined in Amazonka.Glue.Types.Node

Methods

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

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

Read Node Source # 
Instance details

Defined in Amazonka.Glue.Types.Node

Show Node Source # 
Instance details

Defined in Amazonka.Glue.Types.Node

Methods

showsPrec :: Int -> Node -> ShowS #

show :: Node -> String #

showList :: [Node] -> ShowS #

Generic Node Source # 
Instance details

Defined in Amazonka.Glue.Types.Node

Associated Types

type Rep Node :: Type -> Type #

Methods

from :: Node -> Rep Node x #

to :: Rep Node x -> Node #

NFData Node Source # 
Instance details

Defined in Amazonka.Glue.Types.Node

Methods

rnf :: Node -> () #

Hashable Node Source # 
Instance details

Defined in Amazonka.Glue.Types.Node

Methods

hashWithSalt :: Int -> Node -> Int #

hash :: Node -> Int #

FromJSON Node Source # 
Instance details

Defined in Amazonka.Glue.Types.Node

type Rep Node Source # 
Instance details

Defined in Amazonka.Glue.Types.Node

newNode :: Node Source #

Create a value of Node 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:triggerDetails:Node', node_triggerDetails - Details of the Trigger when the node represents a Trigger.

$sel:uniqueId:Node', node_uniqueId - The unique Id assigned to the node within the workflow.

$sel:crawlerDetails:Node', node_crawlerDetails - Details of the crawler when the node represents a crawler.

$sel:name:Node', node_name - The name of the Glue component represented by the node.

$sel:jobDetails:Node', node_jobDetails - Details of the Job when the node represents a Job.

$sel:type':Node', node_type - The type of Glue component represented by the node.

node_triggerDetails :: Lens' Node (Maybe TriggerNodeDetails) Source #

Details of the Trigger when the node represents a Trigger.

node_uniqueId :: Lens' Node (Maybe Text) Source #

The unique Id assigned to the node within the workflow.

node_crawlerDetails :: Lens' Node (Maybe CrawlerNodeDetails) Source #

Details of the crawler when the node represents a crawler.

node_name :: Lens' Node (Maybe Text) Source #

The name of the Glue component represented by the node.

node_jobDetails :: Lens' Node (Maybe JobNodeDetails) Source #

Details of the Job when the node represents a Job.

node_type :: Lens' Node (Maybe NodeType) Source #

The type of Glue component represented by the node.