Interface CfnDataset.ICsvOptionsProperty
Represents a set of options that define how DataBrew will read a comma-separated value (CSV) file when creating a dataset from that file.
Namespace: Amazon.CDK.AWS.DataBrew
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICsvOptionsProperty
Syntax (vb)
Public Interface ICsvOptionsProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.DataBrew;
var csvOptionsProperty = new CsvOptionsProperty {
Delimiter = "delimiter",
HeaderRow = false
};
Synopsis
Properties
Delimiter | A single character that specifies the delimiter being used in the CSV file. |
Header |
A variable that specifies whether the first row in the file is parsed as the header. |
Properties
Delimiter
A single character that specifies the delimiter being used in the CSV file.
virtual string Delimiter { get; }
Property Value
System.
Remarks
HeaderRow
A variable that specifies whether the first row in the file is parsed as the header.
virtual object HeaderRow { get; }
Property Value
System.
Remarks
If this value is false, column names are auto-generated.