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:05.019Z") @Stability(Stable) public interface DataFormatProps extends software.amazon.jsii.JsiiSerializable
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.*;
 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();
 
  • Method Details

    • getInputFormat

      @Stability(Stable) @NotNull InputFormat getInputFormat()
      InputFormat for this data format.
    • getOutputFormat

      @Stability(Stable) @NotNull OutputFormat getOutputFormat()
      OutputFormat for this data format.
    • getSerializationLibrary

      @Stability(Stable) @NotNull SerializationLibrary getSerializationLibrary()
      Serialization library for this data format.
    • getClassificationString

      @Stability(Stable) @Nullable default ClassificationString getClassificationString()
      Classification string given to tables with this data format.

      Default: - No classification is specified.

    • builder

      @Stability(Stable) static DataFormatProps.Builder builder()
      Returns:
      a DataFormatProps.Builder of DataFormatProps