amazonka-omics-2.0: Amazon Omics SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.Omics.Types.ReadOptions

Description

 
Synopsis

Documentation

data ReadOptions Source #

Read options for an annotation import job.

See: newReadOptions smart constructor.

Constructors

ReadOptions' 

Fields

Instances

Instances details
FromJSON ReadOptions Source # 
Instance details

Defined in Amazonka.Omics.Types.ReadOptions

ToJSON ReadOptions Source # 
Instance details

Defined in Amazonka.Omics.Types.ReadOptions

Generic ReadOptions Source # 
Instance details

Defined in Amazonka.Omics.Types.ReadOptions

Associated Types

type Rep ReadOptions :: Type -> Type #

Read ReadOptions Source # 
Instance details

Defined in Amazonka.Omics.Types.ReadOptions

Show ReadOptions Source # 
Instance details

Defined in Amazonka.Omics.Types.ReadOptions

NFData ReadOptions Source # 
Instance details

Defined in Amazonka.Omics.Types.ReadOptions

Methods

rnf :: ReadOptions -> () #

Eq ReadOptions Source # 
Instance details

Defined in Amazonka.Omics.Types.ReadOptions

Hashable ReadOptions Source # 
Instance details

Defined in Amazonka.Omics.Types.ReadOptions

type Rep ReadOptions Source # 
Instance details

Defined in Amazonka.Omics.Types.ReadOptions

newReadOptions :: ReadOptions Source #

Create a value of ReadOptions 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:comment:ReadOptions', readOptions_comment - The file's comment character.

$sel:encoding:ReadOptions', readOptions_encoding - The file's encoding.

$sel:escape:ReadOptions', readOptions_escape - A character for escaping quotes in the file.

$sel:escapeQuotes:ReadOptions', readOptions_escapeQuotes - Whether quotes need to be escaped in the file.

$sel:header:ReadOptions', readOptions_header - Whether the file has a header row.

$sel:lineSep:ReadOptions', readOptions_lineSep - A line separator for the file.

$sel:quote:ReadOptions', readOptions_quote - The file's quote character.

$sel:quoteAll:ReadOptions', readOptions_quoteAll - Whether all values need to be quoted, or just those that contain quotes.

$sel:sep:ReadOptions', readOptions_sep - The file's field separator.

readOptions_comment :: Lens' ReadOptions (Maybe Text) Source #

The file's comment character.

readOptions_escape :: Lens' ReadOptions (Maybe Text) Source #

A character for escaping quotes in the file.

readOptions_escapeQuotes :: Lens' ReadOptions (Maybe Bool) Source #

Whether quotes need to be escaped in the file.

readOptions_header :: Lens' ReadOptions (Maybe Bool) Source #

Whether the file has a header row.

readOptions_lineSep :: Lens' ReadOptions (Maybe Text) Source #

A line separator for the file.

readOptions_quote :: Lens' ReadOptions (Maybe Text) Source #

The file's quote character.

readOptions_quoteAll :: Lens' ReadOptions (Maybe Bool) Source #

Whether all values need to be quoted, or just those that contain quotes.

readOptions_sep :: Lens' ReadOptions (Maybe Text) Source #

The file's field separator.