Class CfnTablePropsMixin.InputFormatOptionsProperty
The format options for the data that was imported into the target table.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.DynamoDB.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnTablePropsMixin.InputFormatOptionsProperty : CfnTablePropsMixin.IInputFormatOptionsProperty
Syntax (vb)
Public Class CfnTablePropsMixin.InputFormatOptionsProperty Implements CfnTablePropsMixin.IInputFormatOptionsProperty
Remarks
There is one value, CsvOption.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.DynamoDB.Mixins;
var inputFormatOptionsProperty = new InputFormatOptionsProperty {
Csv = new CsvProperty {
Delimiter = "delimiter",
HeaderList = new [] { "headerList" }
}
};
Synopsis
Constructors
| InputFormatOptionsProperty() | The format options for the data that was imported into the target table. |
Properties
| Csv | The options for imported source files in CSV format. |
Constructors
InputFormatOptionsProperty()
The format options for the data that was imported into the target table.
public InputFormatOptionsProperty()
Remarks
There is one value, CsvOption.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.DynamoDB.Mixins;
var inputFormatOptionsProperty = new InputFormatOptionsProperty {
Csv = new CsvProperty {
Delimiter = "delimiter",
HeaderList = new [] { "headerList" }
}
};
Properties
Csv
The options for imported source files in CSV format.
public object? Csv { get; set; }
Property Value
Remarks
The values are Delimiter and HeaderList.
Type union: either IResolvable or CfnTablePropsMixin.ICsvProperty