Interface CfnDatastorePropsMixin.ParquetConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDatastorePropsMixin.ParquetConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnDatastorePropsMixin
@Stability(Stable)
public static interface CfnDatastorePropsMixin.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.mixins.preview.services.iotanalytics.mixins.*;
ParquetConfigurationProperty parquetConfigurationProperty = ParquetConfigurationProperty.builder()
.schemaDefinition(SchemaDefinitionProperty.builder()
.columns(List.of(ColumnProperty.builder()
.name("name")
.type("type")
.build()))
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDatastorePropsMixin.ParquetConfigurationPropertystatic final classAn implementation forCfnDatastorePropsMixin.ParquetConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSchemaDefinition
Information needed to define a schema.Returns union: either
IResolvableorCfnDatastorePropsMixin.SchemaDefinitionProperty- See Also:
-
builder
-