Interface CfnTablePropsMixin.InputFormatOptionsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTablePropsMixin.InputFormatOptionsProperty.Jsii$Proxy
- Enclosing class:
CfnTablePropsMixin
@Stability(Stable)
public static interface CfnTablePropsMixin.InputFormatOptionsProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.cfnpropertymixins.services.dynamodb.*;
InputFormatOptionsProperty inputFormatOptionsProperty = InputFormatOptionsProperty.builder()
.csv(CsvProperty.builder()
.delimiter("delimiter")
.headerList(List.of("headerList"))
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTablePropsMixin.InputFormatOptionsPropertystatic final classAn implementation forCfnTablePropsMixin.InputFormatOptionsProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCsv
The options for imported source files in CSV format.The values are Delimiter and HeaderList.
Returns union: either
IResolvableorCfnTablePropsMixin.CsvProperty- See Also:
-
builder
-