Interface CfnTable.CsvProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTable.CsvProperty.Jsii$Proxy
- Enclosing class:
CfnTable
@Stability(Stable)
public static interface CfnTable.CsvProperty
extends software.amazon.jsii.JsiiSerializable
The options for imported source files in CSV format.
The values are Delimiter and HeaderList.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.dynamodb.*; CsvProperty csvProperty = CsvProperty.builder() .delimiter("delimiter") .headerList(List.of("headerList")) .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnTable.CsvProperty
static final class
An implementation forCfnTable.CsvProperty
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnTable.CsvProperty.Builder
builder()
default String
The delimiter used for separating items in the CSV file being imported.List of the headers used to specify a common header for all source CSV files being imported.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDelimiter
The delimiter used for separating items in the CSV file being imported.- See Also:
-
getHeaderList
List of the headers used to specify a common header for all source CSV files being imported.If this field is specified then the first line of each CSV file is treated as data instead of the header. If this field is not specified the the first line of each CSV file is treated as the header.
- See Also:
-
builder
- Returns:
- a
CfnTable.CsvProperty.Builder
ofCfnTable.CsvProperty
-