libZSservicesZSamazonka-databrewZSamazonka-databrew
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.DataBrew.Types.DataCatalogOutput

Description

 
Synopsis

Documentation

data DataCatalogOutput Source #

Represents options that specify how and where in the Glue Data Catalog DataBrew writes the output generated by recipe jobs.

See: newDataCatalogOutput smart constructor.

Constructors

DataCatalogOutput' 

Fields

Instances

Instances details
Eq DataCatalogOutput Source # 
Instance details

Defined in Amazonka.DataBrew.Types.DataCatalogOutput

Read DataCatalogOutput Source # 
Instance details

Defined in Amazonka.DataBrew.Types.DataCatalogOutput

Show DataCatalogOutput Source # 
Instance details

Defined in Amazonka.DataBrew.Types.DataCatalogOutput

Generic DataCatalogOutput Source # 
Instance details

Defined in Amazonka.DataBrew.Types.DataCatalogOutput

Associated Types

type Rep DataCatalogOutput :: Type -> Type #

NFData DataCatalogOutput Source # 
Instance details

Defined in Amazonka.DataBrew.Types.DataCatalogOutput

Methods

rnf :: DataCatalogOutput -> () #

Hashable DataCatalogOutput Source # 
Instance details

Defined in Amazonka.DataBrew.Types.DataCatalogOutput

ToJSON DataCatalogOutput Source # 
Instance details

Defined in Amazonka.DataBrew.Types.DataCatalogOutput

FromJSON DataCatalogOutput Source # 
Instance details

Defined in Amazonka.DataBrew.Types.DataCatalogOutput

type Rep DataCatalogOutput Source # 
Instance details

Defined in Amazonka.DataBrew.Types.DataCatalogOutput

type Rep DataCatalogOutput = D1 ('MetaData "DataCatalogOutput" "Amazonka.DataBrew.Types.DataCatalogOutput" "libZSservicesZSamazonka-databrewZSamazonka-databrew" 'False) (C1 ('MetaCons "DataCatalogOutput'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "databaseOptions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe DatabaseTableOutputOptions)) :*: (S1 ('MetaSel ('Just "s3Options") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe S3TableOutputOptions)) :*: S1 ('MetaSel ('Just "catalogId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))) :*: (S1 ('MetaSel ('Just "overwrite") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: (S1 ('MetaSel ('Just "databaseName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "tableName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))))

newDataCatalogOutput Source #

Create a value of DataCatalogOutput 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:databaseOptions:DataCatalogOutput', dataCatalogOutput_databaseOptions - Represents options that specify how and where DataBrew writes the database output generated by recipe jobs.

$sel:s3Options:DataCatalogOutput', dataCatalogOutput_s3Options - Represents options that specify how and where DataBrew writes the Amazon S3 output generated by recipe jobs.

$sel:catalogId:DataCatalogOutput', dataCatalogOutput_catalogId - The unique identifier of the Amazon Web Services account that holds the Data Catalog that stores the data.

$sel:overwrite:DataCatalogOutput', dataCatalogOutput_overwrite - A value that, if true, means that any data in the location specified for output is overwritten with new output. Not supported with DatabaseOptions.

$sel:databaseName:DataCatalogOutput', dataCatalogOutput_databaseName - The name of a database in the Data Catalog.

$sel:tableName:DataCatalogOutput', dataCatalogOutput_tableName - The name of a table in the Data Catalog.

dataCatalogOutput_databaseOptions :: Lens' DataCatalogOutput (Maybe DatabaseTableOutputOptions) Source #

Represents options that specify how and where DataBrew writes the database output generated by recipe jobs.

dataCatalogOutput_s3Options :: Lens' DataCatalogOutput (Maybe S3TableOutputOptions) Source #

Represents options that specify how and where DataBrew writes the Amazon S3 output generated by recipe jobs.

dataCatalogOutput_catalogId :: Lens' DataCatalogOutput (Maybe Text) Source #

The unique identifier of the Amazon Web Services account that holds the Data Catalog that stores the data.

dataCatalogOutput_overwrite :: Lens' DataCatalogOutput (Maybe Bool) Source #

A value that, if true, means that any data in the location specified for output is overwritten with new output. Not supported with DatabaseOptions.

dataCatalogOutput_databaseName :: Lens' DataCatalogOutput Text Source #

The name of a database in the Data Catalog.

dataCatalogOutput_tableName :: Lens' DataCatalogOutput Text Source #

The name of a table in the Data Catalog.