interface CsvOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataBrew.Mixins.CfnDatasetPropsMixin.CsvOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdatabrew/mixins#CfnDatasetPropsMixin_CsvOptionsProperty |
Java | software.amazon.awscdk.mixins.preview.services.databrew.mixins.CfnDatasetPropsMixin.CsvOptionsProperty |
Python | aws_cdk.mixins_preview.aws_databrew.mixins.CfnDatasetPropsMixin.CsvOptionsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_databrew » mixins » 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 { mixins as databrew_mixins } from '@aws-cdk/mixins-preview/aws-databrew';
const csvOptionsProperty: databrew_mixins.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