interface FileFormatConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTAnalytics.Mixins.CfnDatastorePropsMixin.FileFormatConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotanalytics/mixins#CfnDatastorePropsMixin_FileFormatConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.iotanalytics.mixins.CfnDatastorePropsMixin.FileFormatConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_iotanalytics.mixins.CfnDatastorePropsMixin.FileFormatConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iotanalytics » mixins » CfnDatastorePropsMixin » FileFormatConfigurationProperty |
Contains the configuration information of file formats. AWS IoT Analytics data stores support JSON and Parquet .
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 { mixins as iotanalytics_mixins } from '@aws-cdk/mixins-preview/aws-iotanalytics';
declare const jsonConfiguration: any;
const fileFormatConfigurationProperty: iotanalytics_mixins.CfnDatastorePropsMixin.FileFormatConfigurationProperty = {
jsonConfiguration: jsonConfiguration,
parquetConfiguration: {
schemaDefinition: {
columns: [{
name: 'name',
type: 'type',
}],
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| json | any | Contains the configuration information of the JSON format. |
| parquet | IResolvable | Parquet | Contains the configuration information of the Parquet format. |
jsonConfiguration?
Type:
any
(optional)
Contains the configuration information of the JSON format.
parquetConfiguration?
Type:
IResolvable | Parquet
(optional)
Contains the configuration information of the Parquet format.

.NET
Go
Java
Python
TypeScript