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

Description

 
Synopsis

Documentation

data DatabaseOutput Source #

Represents a JDBC database output object which defines the output destination for a DataBrew recipe job to write into.

See: newDatabaseOutput smart constructor.

Constructors

DatabaseOutput' 

Fields

Instances

Instances details
Eq DatabaseOutput Source # 
Instance details

Defined in Amazonka.DataBrew.Types.DatabaseOutput

Read DatabaseOutput Source # 
Instance details

Defined in Amazonka.DataBrew.Types.DatabaseOutput

Show DatabaseOutput Source # 
Instance details

Defined in Amazonka.DataBrew.Types.DatabaseOutput

Generic DatabaseOutput Source # 
Instance details

Defined in Amazonka.DataBrew.Types.DatabaseOutput

Associated Types

type Rep DatabaseOutput :: Type -> Type #

NFData DatabaseOutput Source # 
Instance details

Defined in Amazonka.DataBrew.Types.DatabaseOutput

Methods

rnf :: DatabaseOutput -> () #

Hashable DatabaseOutput Source # 
Instance details

Defined in Amazonka.DataBrew.Types.DatabaseOutput

ToJSON DatabaseOutput Source # 
Instance details

Defined in Amazonka.DataBrew.Types.DatabaseOutput

FromJSON DatabaseOutput Source # 
Instance details

Defined in Amazonka.DataBrew.Types.DatabaseOutput

type Rep DatabaseOutput Source # 
Instance details

Defined in Amazonka.DataBrew.Types.DatabaseOutput

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

newDatabaseOutput Source #

Create a value of DatabaseOutput 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:databaseOutputMode:DatabaseOutput', databaseOutput_databaseOutputMode - The output mode to write into the database. Currently supported option: NEW_TABLE.

$sel:glueConnectionName:DatabaseOutput', databaseOutput_glueConnectionName - The Glue connection that stores the connection information for the target database.

$sel:databaseOptions:DatabaseOutput', databaseOutput_databaseOptions - Represents options that specify how and where DataBrew writes the database output generated by recipe jobs.

databaseOutput_databaseOutputMode :: Lens' DatabaseOutput (Maybe DatabaseOutputMode) Source #

The output mode to write into the database. Currently supported option: NEW_TABLE.

databaseOutput_glueConnectionName :: Lens' DatabaseOutput Text Source #

The Glue connection that stores the connection information for the target database.

databaseOutput_databaseOptions :: Lens' DatabaseOutput DatabaseTableOutputOptions Source #

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