class Aws::IoTAnalytics::Types::FileFormatConfiguration

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.

[1]: parquet.apache.org/

@note When making an API call, you may pass FileFormatConfiguration

data as a hash:

    {
      json_configuration: {
      },
      parquet_configuration: {
        schema_definition: {
          columns: [
            {
              name: "ColumnName", # required
              type: "ColumnDataType", # required
            },
          ],
        },
      },
    }

@!attribute [rw] json_configuration

Contains the configuration information of the JSON format.
@return [Types::JsonConfiguration]

@!attribute [rw] parquet_configuration

Contains the configuration information of the Parquet format.
@return [Types::ParquetConfiguration]

Constants

SENSITIVE