libZSservicesZSamazonka-lookoutmetricsZSamazonka-lookoutmetrics
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.LookoutMetrics.Types.CsvFormatDescriptor

Description

 
Synopsis

Documentation

data CsvFormatDescriptor Source #

Contains information about how a source CSV data file should be analyzed.

See: newCsvFormatDescriptor smart constructor.

Constructors

CsvFormatDescriptor' 

Fields

Instances

Instances details
Eq CsvFormatDescriptor Source # 
Instance details

Defined in Amazonka.LookoutMetrics.Types.CsvFormatDescriptor

Read CsvFormatDescriptor Source # 
Instance details

Defined in Amazonka.LookoutMetrics.Types.CsvFormatDescriptor

Show CsvFormatDescriptor Source # 
Instance details

Defined in Amazonka.LookoutMetrics.Types.CsvFormatDescriptor

Generic CsvFormatDescriptor Source # 
Instance details

Defined in Amazonka.LookoutMetrics.Types.CsvFormatDescriptor

Associated Types

type Rep CsvFormatDescriptor :: Type -> Type #

NFData CsvFormatDescriptor Source # 
Instance details

Defined in Amazonka.LookoutMetrics.Types.CsvFormatDescriptor

Methods

rnf :: CsvFormatDescriptor -> () #

Hashable CsvFormatDescriptor Source # 
Instance details

Defined in Amazonka.LookoutMetrics.Types.CsvFormatDescriptor

ToJSON CsvFormatDescriptor Source # 
Instance details

Defined in Amazonka.LookoutMetrics.Types.CsvFormatDescriptor

FromJSON CsvFormatDescriptor Source # 
Instance details

Defined in Amazonka.LookoutMetrics.Types.CsvFormatDescriptor

type Rep CsvFormatDescriptor Source # 
Instance details

Defined in Amazonka.LookoutMetrics.Types.CsvFormatDescriptor

type Rep CsvFormatDescriptor = D1 ('MetaData "CsvFormatDescriptor" "Amazonka.LookoutMetrics.Types.CsvFormatDescriptor" "libZSservicesZSamazonka-lookoutmetricsZSamazonka-lookoutmetrics" 'False) (C1 ('MetaCons "CsvFormatDescriptor'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "quoteSymbol") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "containsHeader") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: S1 ('MetaSel ('Just "charset") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))) :*: (S1 ('MetaSel ('Just "headerList") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Text])) :*: (S1 ('MetaSel ('Just "fileCompression") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe CSVFileCompression)) :*: S1 ('MetaSel ('Just "delimiter") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))))

newCsvFormatDescriptor :: CsvFormatDescriptor Source #

Create a value of CsvFormatDescriptor 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:quoteSymbol:CsvFormatDescriptor', csvFormatDescriptor_quoteSymbol - The character used as a quote character.

$sel:containsHeader:CsvFormatDescriptor', csvFormatDescriptor_containsHeader - Whether or not the source CSV file contains a header.

$sel:charset:CsvFormatDescriptor', csvFormatDescriptor_charset - The character set in which the source CSV file is written.

$sel:headerList:CsvFormatDescriptor', csvFormatDescriptor_headerList - A list of the source CSV file's headers, if any.

$sel:fileCompression:CsvFormatDescriptor', csvFormatDescriptor_fileCompression - The level of compression of the source CSV file.

$sel:delimiter:CsvFormatDescriptor', csvFormatDescriptor_delimiter - The character used to delimit the source CSV file.

csvFormatDescriptor_quoteSymbol :: Lens' CsvFormatDescriptor (Maybe Text) Source #

The character used as a quote character.

csvFormatDescriptor_containsHeader :: Lens' CsvFormatDescriptor (Maybe Bool) Source #

Whether or not the source CSV file contains a header.

csvFormatDescriptor_charset :: Lens' CsvFormatDescriptor (Maybe Text) Source #

The character set in which the source CSV file is written.

csvFormatDescriptor_headerList :: Lens' CsvFormatDescriptor (Maybe [Text]) Source #

A list of the source CSV file's headers, if any.

csvFormatDescriptor_delimiter :: Lens' CsvFormatDescriptor (Maybe Text) Source #

The character used to delimit the source CSV file.