interface FormatOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataBrew.Mixins.CfnDatasetPropsMixin.FormatOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdatabrew/mixins#CfnDatasetPropsMixin_FormatOptionsProperty |
Java | software.amazon.awscdk.mixins.preview.services.databrew.mixins.CfnDatasetPropsMixin.FormatOptionsProperty |
Python | aws_cdk.mixins_preview.aws_databrew.mixins.CfnDatasetPropsMixin.FormatOptionsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_databrew » mixins » CfnDatasetPropsMixin » FormatOptionsProperty |
Represents a set of options that define the structure of either comma-separated value (CSV), Excel, or JSON input.
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 formatOptionsProperty: databrew_mixins.CfnDatasetPropsMixin.FormatOptionsProperty = {
csv: {
delimiter: 'delimiter',
headerRow: false,
},
excel: {
headerRow: false,
sheetIndexes: [123],
sheetNames: ['sheetNames'],
},
json: {
multiLine: false,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| csv? | IResolvable | Csv | Options that define how CSV input is to be interpreted by DataBrew. |
| excel? | IResolvable | Excel | Options that define how Excel input is to be interpreted by DataBrew. |
| json? | IResolvable | Json | Options that define how JSON input is to be interpreted by DataBrew. |
csv?
Type:
IResolvable | Csv
(optional)
Options that define how CSV input is to be interpreted by DataBrew.
excel?
Type:
IResolvable | Excel
(optional)
Options that define how Excel input is to be interpreted by DataBrew.
json?
Type:
IResolvable | Json
(optional)
Options that define how JSON input is to be interpreted by DataBrew.

.NET
Go
Java
Python
TypeScript