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

Description

 
Synopsis

Documentation

data PostgreSQLCatalogSource Source #

Specifies a PostgresSQL data source in the Glue Data Catalog.

See: newPostgreSQLCatalogSource smart constructor.

Constructors

PostgreSQLCatalogSource' 

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

Defined in Amazonka.Glue.Types.PostgreSQLCatalogSource

ToJSON PostgreSQLCatalogSource Source # 
Instance details

Defined in Amazonka.Glue.Types.PostgreSQLCatalogSource

Generic PostgreSQLCatalogSource Source # 
Instance details

Defined in Amazonka.Glue.Types.PostgreSQLCatalogSource

Associated Types

type Rep PostgreSQLCatalogSource :: Type -> Type #

Read PostgreSQLCatalogSource Source # 
Instance details

Defined in Amazonka.Glue.Types.PostgreSQLCatalogSource

Show PostgreSQLCatalogSource Source # 
Instance details

Defined in Amazonka.Glue.Types.PostgreSQLCatalogSource

NFData PostgreSQLCatalogSource Source # 
Instance details

Defined in Amazonka.Glue.Types.PostgreSQLCatalogSource

Methods

rnf :: PostgreSQLCatalogSource -> () #

Eq PostgreSQLCatalogSource Source # 
Instance details

Defined in Amazonka.Glue.Types.PostgreSQLCatalogSource

Hashable PostgreSQLCatalogSource Source # 
Instance details

Defined in Amazonka.Glue.Types.PostgreSQLCatalogSource

type Rep PostgreSQLCatalogSource Source # 
Instance details

Defined in Amazonka.Glue.Types.PostgreSQLCatalogSource

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

newPostgreSQLCatalogSource Source #

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

$sel:database:PostgreSQLCatalogSource', postgreSQLCatalogSource_database - The name of the database to read from.

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

postgreSQLCatalogSource_table :: Lens' PostgreSQLCatalogSource Text Source #

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