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

Description

 
Synopsis

Documentation

data CatalogSource Source #

Specifies a data store in the Glue Data Catalog.

See: newCatalogSource smart constructor.

Constructors

CatalogSource' 

Fields

  • name :: Text

    The name of the data store.

  • 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 CatalogSource Source # 
Instance details

Defined in Amazonka.Glue.Types.CatalogSource

ToJSON CatalogSource Source # 
Instance details

Defined in Amazonka.Glue.Types.CatalogSource

Generic CatalogSource Source # 
Instance details

Defined in Amazonka.Glue.Types.CatalogSource

Associated Types

type Rep CatalogSource :: Type -> Type #

Read CatalogSource Source # 
Instance details

Defined in Amazonka.Glue.Types.CatalogSource

Show CatalogSource Source # 
Instance details

Defined in Amazonka.Glue.Types.CatalogSource

NFData CatalogSource Source # 
Instance details

Defined in Amazonka.Glue.Types.CatalogSource

Methods

rnf :: CatalogSource -> () #

Eq CatalogSource Source # 
Instance details

Defined in Amazonka.Glue.Types.CatalogSource

Hashable CatalogSource Source # 
Instance details

Defined in Amazonka.Glue.Types.CatalogSource

type Rep CatalogSource Source # 
Instance details

Defined in Amazonka.Glue.Types.CatalogSource

type Rep CatalogSource = D1 ('MetaData "CatalogSource" "Amazonka.Glue.Types.CatalogSource" "amazonka-glue-2.0-7miPWwBHdfn8N8SvbpLgE0" 'False) (C1 ('MetaCons "CatalogSource'" '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))))

newCatalogSource Source #

Create a value of CatalogSource 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:CatalogSource', catalogSource_name - The name of the data store.

$sel:database:CatalogSource', catalogSource_database - The name of the database to read from.

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

catalogSource_name :: Lens' CatalogSource Text Source #

The name of the data store.

catalogSource_database :: Lens' CatalogSource Text Source #

The name of the database to read from.

catalogSource_table :: Lens' CatalogSource Text Source #

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