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

Description

 
Synopsis

Documentation

data MySQLCatalogTarget Source #

Specifies a target that uses MySQL.

See: newMySQLCatalogTarget smart constructor.

Constructors

MySQLCatalogTarget' 

Fields

Instances

Instances details
FromJSON MySQLCatalogTarget Source # 
Instance details

Defined in Amazonka.Glue.Types.MySQLCatalogTarget

ToJSON MySQLCatalogTarget Source # 
Instance details

Defined in Amazonka.Glue.Types.MySQLCatalogTarget

Generic MySQLCatalogTarget Source # 
Instance details

Defined in Amazonka.Glue.Types.MySQLCatalogTarget

Associated Types

type Rep MySQLCatalogTarget :: Type -> Type #

Read MySQLCatalogTarget Source # 
Instance details

Defined in Amazonka.Glue.Types.MySQLCatalogTarget

Show MySQLCatalogTarget Source # 
Instance details

Defined in Amazonka.Glue.Types.MySQLCatalogTarget

NFData MySQLCatalogTarget Source # 
Instance details

Defined in Amazonka.Glue.Types.MySQLCatalogTarget

Methods

rnf :: MySQLCatalogTarget -> () #

Eq MySQLCatalogTarget Source # 
Instance details

Defined in Amazonka.Glue.Types.MySQLCatalogTarget

Hashable MySQLCatalogTarget Source # 
Instance details

Defined in Amazonka.Glue.Types.MySQLCatalogTarget

type Rep MySQLCatalogTarget Source # 
Instance details

Defined in Amazonka.Glue.Types.MySQLCatalogTarget

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

newMySQLCatalogTarget Source #

Create a value of MySQLCatalogTarget 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:MySQLCatalogTarget', mySQLCatalogTarget_name - The name of the data target.

$sel:inputs:MySQLCatalogTarget', mySQLCatalogTarget_inputs - The nodes that are inputs to the data target.

$sel:database:MySQLCatalogTarget', mySQLCatalogTarget_database - The name of the database to write to.

$sel:table:MySQLCatalogTarget', mySQLCatalogTarget_table - The name of the table in the database to write to.

mySQLCatalogTarget_inputs :: Lens' MySQLCatalogTarget (NonEmpty Text) Source #

The nodes that are inputs to the data target.

mySQLCatalogTarget_database :: Lens' MySQLCatalogTarget Text Source #

The name of the database to write to.

mySQLCatalogTarget_table :: Lens' MySQLCatalogTarget Text Source #

The name of the table in the database to write to.