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

Description

 
Synopsis

Documentation

data BasicCatalogTarget Source #

Specifies a target that uses a Glue Data Catalog table.

See: newBasicCatalogTarget smart constructor.

Constructors

BasicCatalogTarget' 

Fields

  • name :: Text

    The name of your data target.

  • inputs :: NonEmpty Text

    The nodes that are inputs to the data target.

  • database :: Text

    The database that contains the table you want to use as the target. This database must already exist in the Data Catalog.

  • table :: Text

    The table that defines the schema of your output data. This table must already exist in the Data Catalog.

Instances

Instances details
FromJSON BasicCatalogTarget Source # 
Instance details

Defined in Amazonka.Glue.Types.BasicCatalogTarget

ToJSON BasicCatalogTarget Source # 
Instance details

Defined in Amazonka.Glue.Types.BasicCatalogTarget

Generic BasicCatalogTarget Source # 
Instance details

Defined in Amazonka.Glue.Types.BasicCatalogTarget

Associated Types

type Rep BasicCatalogTarget :: Type -> Type #

Read BasicCatalogTarget Source # 
Instance details

Defined in Amazonka.Glue.Types.BasicCatalogTarget

Show BasicCatalogTarget Source # 
Instance details

Defined in Amazonka.Glue.Types.BasicCatalogTarget

NFData BasicCatalogTarget Source # 
Instance details

Defined in Amazonka.Glue.Types.BasicCatalogTarget

Methods

rnf :: BasicCatalogTarget -> () #

Eq BasicCatalogTarget Source # 
Instance details

Defined in Amazonka.Glue.Types.BasicCatalogTarget

Hashable BasicCatalogTarget Source # 
Instance details

Defined in Amazonka.Glue.Types.BasicCatalogTarget

type Rep BasicCatalogTarget Source # 
Instance details

Defined in Amazonka.Glue.Types.BasicCatalogTarget

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

newBasicCatalogTarget Source #

Create a value of BasicCatalogTarget 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:BasicCatalogTarget', basicCatalogTarget_name - The name of your data target.

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

$sel:database:BasicCatalogTarget', basicCatalogTarget_database - The database that contains the table you want to use as the target. This database must already exist in the Data Catalog.

$sel:table:BasicCatalogTarget', basicCatalogTarget_table - The table that defines the schema of your output data. This table must already exist in the Data Catalog.

basicCatalogTarget_inputs :: Lens' BasicCatalogTarget (NonEmpty Text) Source #

The nodes that are inputs to the data target.

basicCatalogTarget_database :: Lens' BasicCatalogTarget Text Source #

The database that contains the table you want to use as the target. This database must already exist in the Data Catalog.

basicCatalogTarget_table :: Lens' BasicCatalogTarget Text Source #

The table that defines the schema of your output data. This table must already exist in the Data Catalog.