| Copyright | (c) 2013-2023 Brendan Hay |
|---|---|
| License | Mozilla Public License, v. 2.0. |
| Maintainer | Brendan Hay |
| Stability | auto-generated |
| Portability | non-portable (GHC extensions) |
| Safe Haskell | Safe-Inferred |
| Language | Haskell2010 |
Amazonka.Glue.Types.Merge
Description
Documentation
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
| |
Instances
| FromJSON Merge Source # | |
| ToJSON Merge Source # | |
Defined in Amazonka.Glue.Types.Merge | |
| Generic Merge Source # | |
| Read Merge Source # | |
| Show Merge Source # | |
| NFData Merge Source # | |
Defined in Amazonka.Glue.Types.Merge | |
| Eq Merge Source # | |
| Hashable Merge Source # | |
Defined in Amazonka.Glue.Types.Merge | |
| type Rep Merge Source # | |
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]])))) | |
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.