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

Description

 
Synopsis

Documentation

data DatabaseTableOutputOptions Source #

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

See: newDatabaseTableOutputOptions smart constructor.

Constructors

DatabaseTableOutputOptions' 

Fields

  • tempDirectory :: Maybe S3Location

    Represents an Amazon S3 location (bucket name and object key) where DataBrew can store intermediate results.

  • tableName :: Text

    A prefix for the name of a table DataBrew will create in the database.

Instances

Instances details
Eq DatabaseTableOutputOptions Source # 
Instance details

Defined in Amazonka.DataBrew.Types.DatabaseTableOutputOptions

Read DatabaseTableOutputOptions Source # 
Instance details

Defined in Amazonka.DataBrew.Types.DatabaseTableOutputOptions

Show DatabaseTableOutputOptions Source # 
Instance details

Defined in Amazonka.DataBrew.Types.DatabaseTableOutputOptions

Generic DatabaseTableOutputOptions Source # 
Instance details

Defined in Amazonka.DataBrew.Types.DatabaseTableOutputOptions

Associated Types

type Rep DatabaseTableOutputOptions :: Type -> Type #

NFData DatabaseTableOutputOptions Source # 
Instance details

Defined in Amazonka.DataBrew.Types.DatabaseTableOutputOptions

Hashable DatabaseTableOutputOptions Source # 
Instance details

Defined in Amazonka.DataBrew.Types.DatabaseTableOutputOptions

ToJSON DatabaseTableOutputOptions Source # 
Instance details

Defined in Amazonka.DataBrew.Types.DatabaseTableOutputOptions

FromJSON DatabaseTableOutputOptions Source # 
Instance details

Defined in Amazonka.DataBrew.Types.DatabaseTableOutputOptions

type Rep DatabaseTableOutputOptions Source # 
Instance details

Defined in Amazonka.DataBrew.Types.DatabaseTableOutputOptions

type Rep DatabaseTableOutputOptions = D1 ('MetaData "DatabaseTableOutputOptions" "Amazonka.DataBrew.Types.DatabaseTableOutputOptions" "libZSservicesZSamazonka-databrewZSamazonka-databrew" 'False) (C1 ('MetaCons "DatabaseTableOutputOptions'" 'PrefixI 'True) (S1 ('MetaSel ('Just "tempDirectory") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe S3Location)) :*: S1 ('MetaSel ('Just "tableName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newDatabaseTableOutputOptions Source #

Create a value of DatabaseTableOutputOptions 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:tempDirectory:DatabaseTableOutputOptions', databaseTableOutputOptions_tempDirectory - Represents an Amazon S3 location (bucket name and object key) where DataBrew can store intermediate results.

$sel:tableName:DatabaseTableOutputOptions', databaseTableOutputOptions_tableName - A prefix for the name of a table DataBrew will create in the database.

databaseTableOutputOptions_tempDirectory :: Lens' DatabaseTableOutputOptions (Maybe S3Location) Source #

Represents an Amazon S3 location (bucket name and object key) where DataBrew can store intermediate results.

databaseTableOutputOptions_tableName :: Lens' DatabaseTableOutputOptions Text Source #

A prefix for the name of a table DataBrew will create in the database.