interface InputFormatOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DynamoDB.Mixins.CfnTablePropsMixin.InputFormatOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdynamodb/mixins#CfnTablePropsMixin_InputFormatOptionsProperty |
Java | software.amazon.awscdk.mixins.preview.services.dynamodb.mixins.CfnTablePropsMixin.InputFormatOptionsProperty |
Python | aws_cdk.mixins_preview.aws_dynamodb.mixins.CfnTablePropsMixin.InputFormatOptionsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_dynamodb » mixins » CfnTablePropsMixin » 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 { mixins as dynamodb_mixins } from '@aws-cdk/mixins-preview/aws-dynamodb';
const inputFormatOptionsProperty: dynamodb_mixins.CfnTablePropsMixin.InputFormatOptionsProperty = {
csv: {
delimiter: 'delimiter',
headerList: ['headerList'],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| csv? | IResolvable | Csv | The options for imported source files in CSV format. |
csv?
Type:
IResolvable | Csv
(optional)
The options for imported source files in CSV format.
The values are Delimiter and HeaderList.

.NET
Go
Java
Python
TypeScript