Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

FileFormatConfiguration

import type { FileFormatConfiguration } from "https://aws-api.deno.dev/v0.3/services/iotanalytics.ts?docs=full";

Contains the configuration information of file formats. 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.

interface FileFormatConfiguration {
jsonConfiguration?: JsonConfiguration | null;
parquetConfiguration?: ParquetConfiguration | null;
}

§Properties

§
jsonConfiguration?: JsonConfiguration | null
[src]

Contains the configuration information of the JSON format.

§
parquetConfiguration?: ParquetConfiguration | null
[src]

Contains the configuration information of the Parquet format.