@Stability(value=Stable)
public static interface CfnDatastore.FileFormatConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
The default file format is JSON. You can specify only one format.
You can't change the file format after you create the data store.
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.*; Object jsonConfiguration; FileFormatConfigurationProperty fileFormatConfigurationProperty = FileFormatConfigurationProperty.builder() .jsonConfiguration(jsonConfiguration) .parquetConfiguration(ParquetConfigurationProperty.builder() .schemaDefinition(SchemaDefinitionProperty.builder() .columns(List.of(ColumnProperty.builder() .name("name") .type("type") .build())) .build()) .build()) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnDatastore.FileFormatConfigurationProperty.Builder
A builder for
CfnDatastore.FileFormatConfigurationProperty |
static class |
CfnDatastore.FileFormatConfigurationProperty.Jsii$Proxy
An implementation for
CfnDatastore.FileFormatConfigurationProperty |
Modifier and Type | Method and Description |
---|---|
static CfnDatastore.FileFormatConfigurationProperty.Builder |
builder() |
default Object |
getJsonConfiguration()
Contains the configuration information of the JSON format.
|
default Object |
getParquetConfiguration()
Contains the configuration information of the Parquet format.
|
@Stability(value=Stable) @Nullable default Object getJsonConfiguration()
@Stability(value=Stable) @Nullable default Object getParquetConfiguration()
@Stability(value=Stable) static CfnDatastore.FileFormatConfigurationProperty.Builder builder()
Copyright © 2023. All rights reserved.