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

Description

 
Synopsis

Documentation

data DeltaTarget Source #

Specifies a Delta data store to crawl one or more Delta tables.

See: newDeltaTarget smart constructor.

Constructors

DeltaTarget' 

Fields

Instances

Instances details
FromJSON DeltaTarget Source # 
Instance details

Defined in Amazonka.Glue.Types.DeltaTarget

ToJSON DeltaTarget Source # 
Instance details

Defined in Amazonka.Glue.Types.DeltaTarget

Generic DeltaTarget Source # 
Instance details

Defined in Amazonka.Glue.Types.DeltaTarget

Associated Types

type Rep DeltaTarget :: Type -> Type #

Read DeltaTarget Source # 
Instance details

Defined in Amazonka.Glue.Types.DeltaTarget

Show DeltaTarget Source # 
Instance details

Defined in Amazonka.Glue.Types.DeltaTarget

NFData DeltaTarget Source # 
Instance details

Defined in Amazonka.Glue.Types.DeltaTarget

Methods

rnf :: DeltaTarget -> () #

Eq DeltaTarget Source # 
Instance details

Defined in Amazonka.Glue.Types.DeltaTarget

Hashable DeltaTarget Source # 
Instance details

Defined in Amazonka.Glue.Types.DeltaTarget

type Rep DeltaTarget Source # 
Instance details

Defined in Amazonka.Glue.Types.DeltaTarget

type Rep DeltaTarget = D1 ('MetaData "DeltaTarget" "Amazonka.Glue.Types.DeltaTarget" "amazonka-glue-2.0-7miPWwBHdfn8N8SvbpLgE0" 'False) (C1 ('MetaCons "DeltaTarget'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "connectionName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "createNativeDeltaTable") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool))) :*: (S1 ('MetaSel ('Just "deltaTables") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Text])) :*: S1 ('MetaSel ('Just "writeManifest") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)))))

newDeltaTarget :: DeltaTarget Source #

Create a value of DeltaTarget 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:connectionName:DeltaTarget', deltaTarget_connectionName - The name of the connection to use to connect to the Delta table target.

$sel:createNativeDeltaTable:DeltaTarget', deltaTarget_createNativeDeltaTable - Specifies whether the crawler will create native tables, to allow integration with query engines that support querying of the Delta transaction log directly.

$sel:deltaTables:DeltaTarget', deltaTarget_deltaTables - A list of the Amazon S3 paths to the Delta tables.

$sel:writeManifest:DeltaTarget', deltaTarget_writeManifest - Specifies whether to write the manifest files to the Delta table path.

deltaTarget_connectionName :: Lens' DeltaTarget (Maybe Text) Source #

The name of the connection to use to connect to the Delta table target.

deltaTarget_createNativeDeltaTable :: Lens' DeltaTarget (Maybe Bool) Source #

Specifies whether the crawler will create native tables, to allow integration with query engines that support querying of the Delta transaction log directly.

deltaTarget_deltaTables :: Lens' DeltaTarget (Maybe [Text]) Source #

A list of the Amazon S3 paths to the Delta tables.

deltaTarget_writeManifest :: Lens' DeltaTarget (Maybe Bool) Source #

Specifies whether to write the manifest files to the Delta table path.