Interface CfnDatastore.ParquetConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDatastore.ParquetConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnDatastore

@Stability(Stable) public static interface CfnDatastore.ParquetConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Contains the configuration information of the Parquet format.

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.iotanalytics.*;
 ParquetConfigurationProperty parquetConfigurationProperty = ParquetConfigurationProperty.builder()
         .schemaDefinition(SchemaDefinitionProperty.builder()
                 .columns(List.of(ColumnProperty.builder()
                         .name("name")
                         .type("type")
                         .build()))
                 .build())
         .build();