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();
 
  • Method Details