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

Description

 
Synopsis

Documentation

data Input Source #

Represents information on how DataBrew can find data, in either the Glue Data Catalog or Amazon S3.

See: newInput smart constructor.

Constructors

Input' 

Fields

Instances

Instances details
Eq Input Source # 
Instance details

Defined in Amazonka.DataBrew.Types.Input

Methods

(==) :: Input -> Input -> Bool #

(/=) :: Input -> Input -> Bool #

Read Input Source # 
Instance details

Defined in Amazonka.DataBrew.Types.Input

Show Input Source # 
Instance details

Defined in Amazonka.DataBrew.Types.Input

Methods

showsPrec :: Int -> Input -> ShowS #

show :: Input -> String #

showList :: [Input] -> ShowS #

Generic Input Source # 
Instance details

Defined in Amazonka.DataBrew.Types.Input

Associated Types

type Rep Input :: Type -> Type #

Methods

from :: Input -> Rep Input x #

to :: Rep Input x -> Input #

NFData Input Source # 
Instance details

Defined in Amazonka.DataBrew.Types.Input

Methods

rnf :: Input -> () #

Hashable Input Source # 
Instance details

Defined in Amazonka.DataBrew.Types.Input

Methods

hashWithSalt :: Int -> Input -> Int #

hash :: Input -> Int #

ToJSON Input Source # 
Instance details

Defined in Amazonka.DataBrew.Types.Input

FromJSON Input Source # 
Instance details

Defined in Amazonka.DataBrew.Types.Input

type Rep Input Source # 
Instance details

Defined in Amazonka.DataBrew.Types.Input

type Rep Input = D1 ('MetaData "Input" "Amazonka.DataBrew.Types.Input" "libZSservicesZSamazonka-databrewZSamazonka-databrew" 'False) (C1 ('MetaCons "Input'" 'PrefixI 'True) (S1 ('MetaSel ('Just "dataCatalogInputDefinition") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe DataCatalogInputDefinition)) :*: (S1 ('MetaSel ('Just "s3InputDefinition") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe S3Location)) :*: S1 ('MetaSel ('Just "databaseInputDefinition") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe DatabaseInputDefinition)))))

newInput :: Input Source #

Create a value of Input 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:dataCatalogInputDefinition:Input', input_dataCatalogInputDefinition - The Glue Data Catalog parameters for the data.

$sel:s3InputDefinition:Input', input_s3InputDefinition - The Amazon S3 location where the data is stored.

$sel:databaseInputDefinition:Input', input_databaseInputDefinition - Connection information for dataset input files stored in a database.

input_dataCatalogInputDefinition :: Lens' Input (Maybe DataCatalogInputDefinition) Source #

The Glue Data Catalog parameters for the data.

input_s3InputDefinition :: Lens' Input (Maybe S3Location) Source #

The Amazon S3 location where the data is stored.

input_databaseInputDefinition :: Lens' Input (Maybe DatabaseInputDefinition) Source #

Connection information for dataset input files stored in a database.