aws-cdk-lib.aws_dynamodb.CfnTable.InputFormatOptionsProperty

interface InputFormatOptionsProperty

LanguageType name
.NETAmazon.CDK.AWS.DynamoDB.CfnTable.InputFormatOptionsProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsdynamodb#CfnTable_InputFormatOptionsProperty
Javasoftware.amazon.awscdk.services.dynamodb.CfnTable.InputFormatOptionsProperty
Pythonaws_cdk.aws_dynamodb.CfnTable.InputFormatOptionsProperty
TypeScript aws-cdk-lib » aws_dynamodb » CfnTable » InputFormatOptionsProperty

The format options for the data that was imported into the target table.

There is one value, CsvOption.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_dynamodb as dynamodb } from 'aws-cdk-lib';
const inputFormatOptionsProperty: dynamodb.CfnTable.InputFormatOptionsProperty = {
  csv: {
    delimiter: 'delimiter',
    headerList: ['headerList'],
  },
};

Properties

NameTypeDescription
csv?IResolvable | CsvPropertyThe options for imported source files in CSV format.

csv?

Type: IResolvable | CsvProperty (optional)

The options for imported source files in CSV format.

The values are Delimiter and HeaderList.