amazonka-glue-2.0: Amazon Glue SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.Glue.Types.Join

Description

 
Synopsis

Documentation

data Join Source #

Specifies a transform that joins two datasets into one dataset using a comparison phrase on the specified data property keys. You can use inner, outer, left, right, left semi, and left anti joins.

See: newJoin smart constructor.

Constructors

Join' 

Fields

Instances

Instances details
FromJSON Join Source # 
Instance details

Defined in Amazonka.Glue.Types.Join

ToJSON Join Source # 
Instance details

Defined in Amazonka.Glue.Types.Join

Generic Join Source # 
Instance details

Defined in Amazonka.Glue.Types.Join

Associated Types

type Rep Join :: Type -> Type #

Methods

from :: Join -> Rep Join x #

to :: Rep Join x -> Join #

Read Join Source # 
Instance details

Defined in Amazonka.Glue.Types.Join

Show Join Source # 
Instance details

Defined in Amazonka.Glue.Types.Join

Methods

showsPrec :: Int -> Join -> ShowS #

show :: Join -> String #

showList :: [Join] -> ShowS #

NFData Join Source # 
Instance details

Defined in Amazonka.Glue.Types.Join

Methods

rnf :: Join -> () #

Eq Join Source # 
Instance details

Defined in Amazonka.Glue.Types.Join

Methods

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

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

Hashable Join Source # 
Instance details

Defined in Amazonka.Glue.Types.Join

Methods

hashWithSalt :: Int -> Join -> Int #

hash :: Join -> Int #

type Rep Join Source # 
Instance details

Defined in Amazonka.Glue.Types.Join

newJoin Source #

Create a value of Join 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:name:Join', join_name - The name of the transform node.

$sel:inputs:Join', join_inputs - The data inputs identified by their node names.

$sel:joinType:Join', join_joinType - Specifies the type of join to be performed on the datasets.

$sel:columns:Join', join_columns - A list of the two columns to be joined.

join_name :: Lens' Join Text Source #

The name of the transform node.

join_inputs :: Lens' Join (NonEmpty Text) Source #

The data inputs identified by their node names.

join_joinType :: Lens' Join JoinType Source #

Specifies the type of join to be performed on the datasets.

join_columns :: Lens' Join (NonEmpty JoinColumn) Source #

A list of the two columns to be joined.