aws-cdk-lib.aws_databrew.CfnDataset.FormatOptionsProperty

interface FormatOptionsProperty

LanguageType name
.NETAmazon.CDK.AWS.DataBrew.CfnDataset.FormatOptionsProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsdatabrew#CfnDataset_FormatOptionsProperty
Javasoftware.amazon.awscdk.services.databrew.CfnDataset.FormatOptionsProperty
Pythonaws_cdk.aws_databrew.CfnDataset.FormatOptionsProperty
TypeScript aws-cdk-lib » aws_databrew » CfnDataset » 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 { aws_databrew as databrew } from 'aws-cdk-lib';
const formatOptionsProperty: databrew.CfnDataset.FormatOptionsProperty = {
  csv: {
    delimiter: 'delimiter',
    headerRow: false,
  },
  excel: {
    headerRow: false,
    sheetIndexes: [123],
    sheetNames: ['sheetNames'],
  },
  json: {
    multiLine: false,
  },
};

Properties

NameTypeDescription
csv?IResolvable | CsvOptionsPropertyOptions that define how CSV input is to be interpreted by DataBrew.
excel?IResolvable | ExcelOptionsPropertyOptions that define how Excel input is to be interpreted by DataBrew.
json?IResolvable | JsonOptionsPropertyOptions that define how JSON input is to be interpreted by DataBrew.

csv?

Type: IResolvable | CsvOptionsProperty (optional)

Options that define how CSV input is to be interpreted by DataBrew.


excel?

Type: IResolvable | ExcelOptionsProperty (optional)

Options that define how Excel input is to be interpreted by DataBrew.


json?

Type: IResolvable | JsonOptionsProperty (optional)

Options that define how JSON input is to be interpreted by DataBrew.