Class: Aws::IoTAnalytics::Types::FileFormatConfiguration

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-iotanalytics/types.rb

Overview

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/

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#json_configurationTypes::JsonConfiguration

Contains the configuration information of the JSON format.



1728
1729
1730
1731
1732
1733
# File 'lib/aws-sdk-iotanalytics/types.rb', line 1728

class FileFormatConfiguration < Struct.new(
  :json_configuration,
  :parquet_configuration)
  SENSITIVE = []
  include Aws::Structure
end

#parquet_configurationTypes::ParquetConfiguration

Contains the configuration information of the Parquet format.



1728
1729
1730
1731
1732
1733
# File 'lib/aws-sdk-iotanalytics/types.rb', line 1728

class FileFormatConfiguration < Struct.new(
  :json_configuration,
  :parquet_configuration)
  SENSITIVE = []
  include Aws::Structure
end