Interface DataFormatProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
DataFormatProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)",
date="2026-09-17T14:54:30.018Z")
@Stability(Deprecated)
@Deprecated
public interface DataFormatProps
extends software.amazon.jsii.JsiiSerializable
Deprecated.
(deprecated) Properties of a DataFormat instance.
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.alpha.*;
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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classDeprecated.static final classDeprecated. -
Method Summary
Modifier and TypeMethodDescriptionstatic DataFormatProps.Builderbuilder()Deprecated.default ClassificationStringDeprecated.Deprecated.Deprecated.Deprecated.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getInputFormat
Deprecated.(deprecated)InputFormatfor this data format. -
getOutputFormat
Deprecated.(deprecated)OutputFormatfor this data format. -
getSerializationLibrary
Deprecated.(deprecated) Serialization library for this data format. -
getClassificationString
Deprecated.(deprecated) Classification string given to tables with this data format.Default: - No classification is specified.
-
builder
Deprecated.- Returns:
- a
DataFormatProps.BuilderofDataFormatProps
-