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

Description

 
Synopsis

Documentation

data JdbcTarget Source #

Specifies a JDBC data store to crawl.

See: newJdbcTarget smart constructor.

Constructors

JdbcTarget' 

Fields

Instances

Instances details
FromJSON JdbcTarget Source # 
Instance details

Defined in Amazonka.Glue.Types.JdbcTarget

ToJSON JdbcTarget Source # 
Instance details

Defined in Amazonka.Glue.Types.JdbcTarget

Generic JdbcTarget Source # 
Instance details

Defined in Amazonka.Glue.Types.JdbcTarget

Associated Types

type Rep JdbcTarget :: Type -> Type #

Read JdbcTarget Source # 
Instance details

Defined in Amazonka.Glue.Types.JdbcTarget

Show JdbcTarget Source # 
Instance details

Defined in Amazonka.Glue.Types.JdbcTarget

NFData JdbcTarget Source # 
Instance details

Defined in Amazonka.Glue.Types.JdbcTarget

Methods

rnf :: JdbcTarget -> () #

Eq JdbcTarget Source # 
Instance details

Defined in Amazonka.Glue.Types.JdbcTarget

Hashable JdbcTarget Source # 
Instance details

Defined in Amazonka.Glue.Types.JdbcTarget

type Rep JdbcTarget Source # 
Instance details

Defined in Amazonka.Glue.Types.JdbcTarget

type Rep JdbcTarget = D1 ('MetaData "JdbcTarget" "Amazonka.Glue.Types.JdbcTarget" "amazonka-glue-2.0-7miPWwBHdfn8N8SvbpLgE0" 'False) (C1 ('MetaCons "JdbcTarget'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "connectionName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "enableAdditionalMetadata") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [JdbcMetadataEntry]))) :*: (S1 ('MetaSel ('Just "exclusions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Text])) :*: S1 ('MetaSel ('Just "path") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))))

newJdbcTarget :: JdbcTarget Source #

Create a value of JdbcTarget 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:JdbcTarget', jdbcTarget_connectionName - The name of the connection to use to connect to the JDBC target.

$sel:enableAdditionalMetadata:JdbcTarget', jdbcTarget_enableAdditionalMetadata - Specify a value of RAWTYPES or COMMENTS to enable additional metadata in table responses. RAWTYPES provides the native-level datatype. COMMENTS provides comments associated with a column or table in the database.

If you do not need additional metadata, keep the field empty.

$sel:exclusions:JdbcTarget', jdbcTarget_exclusions - A list of glob patterns used to exclude from the crawl. For more information, see Catalog Tables with a Crawler.

$sel:path:JdbcTarget', jdbcTarget_path - The path of the JDBC target.

jdbcTarget_connectionName :: Lens' JdbcTarget (Maybe Text) Source #

The name of the connection to use to connect to the JDBC target.

jdbcTarget_enableAdditionalMetadata :: Lens' JdbcTarget (Maybe [JdbcMetadataEntry]) Source #

Specify a value of RAWTYPES or COMMENTS to enable additional metadata in table responses. RAWTYPES provides the native-level datatype. COMMENTS provides comments associated with a column or table in the database.

If you do not need additional metadata, keep the field empty.

jdbcTarget_exclusions :: Lens' JdbcTarget (Maybe [Text]) Source #

A list of glob patterns used to exclude from the crawl. For more information, see Catalog Tables with a Crawler.

jdbcTarget_path :: Lens' JdbcTarget (Maybe Text) Source #

The path of the JDBC target.