Table of Contents

Class CSVInput

Namespace
Amazon.S3.Model
Assembly
AWSSDK.S3.dll

Describes how a CSV-formatted input object is formatted.

public class CSVInput
Inheritance
CSVInput
Inherited Members

Constructors

CSVInput()

public CSVInput()

Properties

AllowQuotedRecordDelimiter

Specifies that CSV field values may contain quoted record delimiters and such records should be allowed. Default value is FALSE. Setting this value to TRUE may lower performance.

public bool AllowQuotedRecordDelimiter { get; set; }

Property Value

bool

Comments

Single character used to indicate a row should be ignored when present at the start of a row.

public string Comments { get; set; }

Property Value

string

FieldDelimiter

Value used to separate individual fields in a record.

public string FieldDelimiter { get; set; }

Property Value

string

FileHeaderInfo

Describes the first line of input. Valid values: None, Ignore, Use.

public FileHeaderInfo FileHeaderInfo { get; set; }

Property Value

FileHeaderInfo

QuoteCharacter

Value used for escaping where the field delimiter is part of the value.

public string QuoteCharacter { get; set; }

Property Value

string

QuoteEscapeCharacter

Single character used for escaping the quote character inside an already escaped value.

public string QuoteEscapeCharacter { get; set; }

Property Value

string

RecordDelimiter

Value used to separate individual records.

public string RecordDelimiter { get; set; }

Property Value

string