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

Description

 
Synopsis

Documentation

data Merge Source #

Specifies a transform that merges a DynamicFrame with a staging DynamicFrame based on the specified primary keys to identify records. Duplicate records (records with the same primary keys) are not de-duplicated.

See: newMerge smart constructor.

Constructors

Merge' 

Fields

  • name :: Text

    The name of the transform node.

  • inputs :: NonEmpty Text

    The data inputs identified by their node names.

  • source :: Text

    The source DynamicFrame that will be merged with a staging DynamicFrame.

  • primaryKeys :: [[Text]]

    The list of primary key fields to match records from the source and staging dynamic frames.

Instances

Instances details
FromJSON Merge Source # 
Instance details

Defined in Amazonka.Glue.Types.Merge

ToJSON Merge Source # 
Instance details

Defined in Amazonka.Glue.Types.Merge

Generic Merge Source # 
Instance details

Defined in Amazonka.Glue.Types.Merge

Associated Types

type Rep Merge :: Type -> Type #

Methods

from :: Merge -> Rep Merge x #

to :: Rep Merge x -> Merge #

Read Merge Source # 
Instance details

Defined in Amazonka.Glue.Types.Merge

Show Merge Source # 
Instance details

Defined in Amazonka.Glue.Types.Merge

Methods

showsPrec :: Int -> Merge -> ShowS #

show :: Merge -> String #

showList :: [Merge] -> ShowS #

NFData Merge Source # 
Instance details

Defined in Amazonka.Glue.Types.Merge

Methods

rnf :: Merge -> () #

Eq Merge Source # 
Instance details

Defined in Amazonka.Glue.Types.Merge

Methods

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

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

Hashable Merge Source # 
Instance details

Defined in Amazonka.Glue.Types.Merge

Methods

hashWithSalt :: Int -> Merge -> Int #

hash :: Merge -> Int #

type Rep Merge Source # 
Instance details

Defined in Amazonka.Glue.Types.Merge

type Rep Merge = D1 ('MetaData "Merge" "Amazonka.Glue.Types.Merge" "amazonka-glue-2.0-7miPWwBHdfn8N8SvbpLgE0" 'False) (C1 ('MetaCons "Merge'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "inputs") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (NonEmpty Text))) :*: (S1 ('MetaSel ('Just "source") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "primaryKeys") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [[Text]]))))

newMerge Source #

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

$sel:inputs:Merge', merge_inputs - The data inputs identified by their node names.

$sel:source:Merge', merge_source - The source DynamicFrame that will be merged with a staging DynamicFrame.

$sel:primaryKeys:Merge', merge_primaryKeys - The list of primary key fields to match records from the source and staging dynamic frames.

merge_name :: Lens' Merge Text Source #

The name of the transform node.

merge_inputs :: Lens' Merge (NonEmpty Text) Source #

The data inputs identified by their node names.

merge_source :: Lens' Merge Text Source #

The source DynamicFrame that will be merged with a staging DynamicFrame.

merge_primaryKeys :: Lens' Merge [[Text]] Source #

The list of primary key fields to match records from the source and staging dynamic frames.