@Generated(value="jsii-pacmak/1.70.0 (build 03c2f6f)", date="2022-11-01T13:16:49.644Z") @Stability(value=Experimental) public interface DataFormatProps extends software.amazon.jsii.JsiiSerializable
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.glue.*;
ClassificationString classificationString;
InputFormat inputFormat;
OutputFormat outputFormat;
SerializationLibrary serializationLibrary;
DataFormatProps dataFormatProps = DataFormatProps.builder()
.inputFormat(inputFormat)
.outputFormat(outputFormat)
.serializationLibrary(serializationLibrary)
// the properties below are optional
.classificationString(classificationString)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
DataFormatProps.Builder
A builder for
DataFormatProps |
static class |
DataFormatProps.Jsii$Proxy
An implementation for
DataFormatProps |
| Modifier and Type | Method and Description |
|---|---|
static DataFormatProps.Builder |
builder() |
default ClassificationString |
getClassificationString()
(experimental) Classification string given to tables with this data format.
|
InputFormat |
getInputFormat()
(experimental) `InputFormat` for this data format.
|
OutputFormat |
getOutputFormat()
(experimental) `OutputFormat` for this data format.
|
SerializationLibrary |
getSerializationLibrary()
(experimental) Serialization library for this data format.
|
@Stability(value=Experimental) @NotNull InputFormat getInputFormat()
@Stability(value=Experimental) @NotNull OutputFormat getOutputFormat()
@Stability(value=Experimental) @NotNull SerializationLibrary getSerializationLibrary()
@Stability(value=Experimental) @Nullable default ClassificationString getClassificationString()
Default: - No classification is specified.
@Stability(value=Experimental) static DataFormatProps.Builder builder()
DataFormatProps.Builder of DataFormatPropsCopyright © 2022. All rights reserved.