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

Description

 
Synopsis

Documentation

data OracleSQLCatalogSource Source #

Specifies an Oracle data source in the Glue Data Catalog.

See: newOracleSQLCatalogSource smart constructor.

Constructors

OracleSQLCatalogSource' 

Fields

  • name :: Text

    The name of the data source.

  • database :: Text

    The name of the database to read from.

  • table :: Text

    The name of the table in the database to read from.

Instances

Instances details
FromJSON OracleSQLCatalogSource Source # 
Instance details

Defined in Amazonka.Glue.Types.OracleSQLCatalogSource

ToJSON OracleSQLCatalogSource Source # 
Instance details

Defined in Amazonka.Glue.Types.OracleSQLCatalogSource

Generic OracleSQLCatalogSource Source # 
Instance details

Defined in Amazonka.Glue.Types.OracleSQLCatalogSource

Associated Types

type Rep OracleSQLCatalogSource :: Type -> Type #

Read OracleSQLCatalogSource Source # 
Instance details

Defined in Amazonka.Glue.Types.OracleSQLCatalogSource

Show OracleSQLCatalogSource Source # 
Instance details

Defined in Amazonka.Glue.Types.OracleSQLCatalogSource

NFData OracleSQLCatalogSource Source # 
Instance details

Defined in Amazonka.Glue.Types.OracleSQLCatalogSource

Methods

rnf :: OracleSQLCatalogSource -> () #

Eq OracleSQLCatalogSource Source # 
Instance details

Defined in Amazonka.Glue.Types.OracleSQLCatalogSource

Hashable OracleSQLCatalogSource Source # 
Instance details

Defined in Amazonka.Glue.Types.OracleSQLCatalogSource

type Rep OracleSQLCatalogSource Source # 
Instance details

Defined in Amazonka.Glue.Types.OracleSQLCatalogSource

type Rep OracleSQLCatalogSource = D1 ('MetaData "OracleSQLCatalogSource" "Amazonka.Glue.Types.OracleSQLCatalogSource" "amazonka-glue-2.0-7miPWwBHdfn8N8SvbpLgE0" 'False) (C1 ('MetaCons "OracleSQLCatalogSource'" 'PrefixI 'True) (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: (S1 ('MetaSel ('Just "database") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "table") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newOracleSQLCatalogSource Source #

Create a value of OracleSQLCatalogSource 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:OracleSQLCatalogSource', oracleSQLCatalogSource_name - The name of the data source.

$sel:database:OracleSQLCatalogSource', oracleSQLCatalogSource_database - The name of the database to read from.

$sel:table:OracleSQLCatalogSource', oracleSQLCatalogSource_table - The name of the table in the database to read from.

oracleSQLCatalogSource_database :: Lens' OracleSQLCatalogSource Text Source #

The name of the database to read from.

oracleSQLCatalogSource_table :: Lens' OracleSQLCatalogSource Text Source #

The name of the table in the database to read from.