aws-cdk-lib.aws_iotanalytics.CfnDatastore.FileFormatConfigurationProperty

interface FileFormatConfigurationProperty

LanguageType name
.NETAmazon.CDK.AWS.IoTAnalytics.CfnDatastore.FileFormatConfigurationProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsiotanalytics#CfnDatastore_FileFormatConfigurationProperty
Javasoftware.amazon.awscdk.services.iotanalytics.CfnDatastore.FileFormatConfigurationProperty
Pythonaws_cdk.aws_iotanalytics.CfnDatastore.FileFormatConfigurationProperty
TypeScript aws-cdk-lib » aws_iotanalytics » CfnDatastore » 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 { aws_iotanalytics as iotanalytics } from 'aws-cdk-lib';

declare const jsonConfiguration: any;
const fileFormatConfigurationProperty: iotanalytics.CfnDatastore.FileFormatConfigurationProperty = {
  jsonConfiguration: jsonConfiguration,
  parquetConfiguration: {
    schemaDefinition: {
      columns: [{
        name: 'name',
        type: 'type',
      }],
    },
  },
};

Properties

NameTypeDescription
jsonConfiguration?anyContains the configuration information of the JSON format.
parquetConfiguration?IResolvable | ParquetConfigurationPropertyContains the configuration information of the Parquet format.

jsonConfiguration?

Type: any (optional)

Contains the configuration information of the JSON format.


parquetConfiguration?

Type: IResolvable | ParquetConfigurationProperty (optional)

Contains the configuration information of the Parquet format.