amazonka-dynamodb-2.0: Amazon DynamoDB 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.DynamoDB.Types.InputFormatOptions

Description

 
Synopsis

Documentation

data InputFormatOptions Source #

The format options for the data that was imported into the target table. There is one value, CsvOption.

See: newInputFormatOptions smart constructor.

Constructors

InputFormatOptions' 

Fields

  • csv :: Maybe CsvOptions

    The options for imported source files in CSV format. The values are Delimiter and HeaderList.

Instances

Instances details
FromJSON InputFormatOptions Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.InputFormatOptions

ToJSON InputFormatOptions Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.InputFormatOptions

Generic InputFormatOptions Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.InputFormatOptions

Associated Types

type Rep InputFormatOptions :: Type -> Type #

Read InputFormatOptions Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.InputFormatOptions

Show InputFormatOptions Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.InputFormatOptions

NFData InputFormatOptions Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.InputFormatOptions

Methods

rnf :: InputFormatOptions -> () #

Eq InputFormatOptions Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.InputFormatOptions

Hashable InputFormatOptions Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.InputFormatOptions

type Rep InputFormatOptions Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.InputFormatOptions

type Rep InputFormatOptions = D1 ('MetaData "InputFormatOptions" "Amazonka.DynamoDB.Types.InputFormatOptions" "amazonka-dynamodb-2.0-GNxlseyeFiu302JKQwQrUS" 'False) (C1 ('MetaCons "InputFormatOptions'" 'PrefixI 'True) (S1 ('MetaSel ('Just "csv") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe CsvOptions))))

newInputFormatOptions :: InputFormatOptions Source #

Create a value of InputFormatOptions 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:csv:InputFormatOptions', inputFormatOptions_csv - The options for imported source files in CSV format. The values are Delimiter and HeaderList.

inputFormatOptions_csv :: Lens' InputFormatOptions (Maybe CsvOptions) Source #

The options for imported source files in CSV format. The values are Delimiter and HeaderList.