interface CsvOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DataBrew.CfnDatasetPropsMixin.CsvOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdatabrew#CfnDatasetPropsMixin_CsvOptionsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.databrew.CfnDatasetPropsMixin.CsvOptionsProperty |
Python | aws_cdk.cfn_property_mixins.aws_databrew.CfnDatasetPropsMixin.CsvOptionsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_databrew » CfnDatasetPropsMixin » CsvOptionsProperty |
Represents a set of options that define how DataBrew will read a comma-separated value (CSV) file when creating a dataset from that file.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_databrew as databrew } from '@aws-cdk/cfn-property-mixins';
const csvOptionsProperty: databrew.CfnDatasetPropsMixin.CsvOptionsProperty = {
delimiter: 'delimiter',
headerRow: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| delimiter? | string | A single character that specifies the delimiter being used in the CSV file. |
| header | boolean | IResolvable | A variable that specifies whether the first row in the file is parsed as the header. |
delimiter?
Type:
string
(optional)
A single character that specifies the delimiter being used in the CSV file.
headerRow?
Type:
boolean | IResolvable
(optional)
A variable that specifies whether the first row in the file is parsed as the header.
If this value is false, column names are auto-generated.

.NET
Go
Java
Python
TypeScript