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

Description

 
Synopsis

Documentation

data MySQLCatalogSource Source #

Specifies a MySQL data source in the Glue Data Catalog.

See: newMySQLCatalogSource smart constructor.

Constructors

MySQLCatalogSource' 

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

Defined in Amazonka.Glue.Types.MySQLCatalogSource

ToJSON MySQLCatalogSource Source # 
Instance details

Defined in Amazonka.Glue.Types.MySQLCatalogSource

Generic MySQLCatalogSource Source # 
Instance details

Defined in Amazonka.Glue.Types.MySQLCatalogSource

Associated Types

type Rep MySQLCatalogSource :: Type -> Type #

Read MySQLCatalogSource Source # 
Instance details

Defined in Amazonka.Glue.Types.MySQLCatalogSource

Show MySQLCatalogSource Source # 
Instance details

Defined in Amazonka.Glue.Types.MySQLCatalogSource

NFData MySQLCatalogSource Source # 
Instance details

Defined in Amazonka.Glue.Types.MySQLCatalogSource

Methods

rnf :: MySQLCatalogSource -> () #

Eq MySQLCatalogSource Source # 
Instance details

Defined in Amazonka.Glue.Types.MySQLCatalogSource

Hashable MySQLCatalogSource Source # 
Instance details

Defined in Amazonka.Glue.Types.MySQLCatalogSource

type Rep MySQLCatalogSource Source # 
Instance details

Defined in Amazonka.Glue.Types.MySQLCatalogSource

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

newMySQLCatalogSource Source #

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

$sel:database:MySQLCatalogSource', mySQLCatalogSource_database - The name of the database to read from.

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

mySQLCatalogSource_database :: Lens' MySQLCatalogSource Text Source #

The name of the database to read from.

mySQLCatalogSource_table :: Lens' MySQLCatalogSource Text Source #

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