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

Description

 
Synopsis

Documentation

data FormatOptions Source #

Represents a set of options that define the structure of either comma-separated value (CSV), Excel, or JSON input.

See: newFormatOptions smart constructor.

Constructors

FormatOptions' 

Fields

Instances

Instances details
Eq FormatOptions Source # 
Instance details

Defined in Amazonka.DataBrew.Types.FormatOptions

Read FormatOptions Source # 
Instance details

Defined in Amazonka.DataBrew.Types.FormatOptions

Show FormatOptions Source # 
Instance details

Defined in Amazonka.DataBrew.Types.FormatOptions

Generic FormatOptions Source # 
Instance details

Defined in Amazonka.DataBrew.Types.FormatOptions

Associated Types

type Rep FormatOptions :: Type -> Type #

NFData FormatOptions Source # 
Instance details

Defined in Amazonka.DataBrew.Types.FormatOptions

Methods

rnf :: FormatOptions -> () #

Hashable FormatOptions Source # 
Instance details

Defined in Amazonka.DataBrew.Types.FormatOptions

ToJSON FormatOptions Source # 
Instance details

Defined in Amazonka.DataBrew.Types.FormatOptions

FromJSON FormatOptions Source # 
Instance details

Defined in Amazonka.DataBrew.Types.FormatOptions

type Rep FormatOptions Source # 
Instance details

Defined in Amazonka.DataBrew.Types.FormatOptions

type Rep FormatOptions = D1 ('MetaData "FormatOptions" "Amazonka.DataBrew.Types.FormatOptions" "libZSservicesZSamazonka-databrewZSamazonka-databrew" 'False) (C1 ('MetaCons "FormatOptions'" 'PrefixI 'True) (S1 ('MetaSel ('Just "json") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe JsonOptions)) :*: (S1 ('MetaSel ('Just "csv") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe CsvOptions)) :*: S1 ('MetaSel ('Just "excel") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ExcelOptions)))))

newFormatOptions :: FormatOptions Source #

Create a value of FormatOptions 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:json:FormatOptions', formatOptions_json - Options that define how JSON input is to be interpreted by DataBrew.

$sel:csv:FormatOptions', formatOptions_csv - Options that define how CSV input is to be interpreted by DataBrew.

$sel:excel:FormatOptions', formatOptions_excel - Options that define how Excel input is to be interpreted by DataBrew.

formatOptions_json :: Lens' FormatOptions (Maybe JsonOptions) Source #

Options that define how JSON input is to be interpreted by DataBrew.

formatOptions_csv :: Lens' FormatOptions (Maybe CsvOptions) Source #

Options that define how CSV input is to be interpreted by DataBrew.

formatOptions_excel :: Lens' FormatOptions (Maybe ExcelOptions) Source #

Options that define how Excel input is to be interpreted by DataBrew.