Class: Aws::IoTAnalytics::Types::FileFormatConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTAnalytics::Types::FileFormatConfiguration
- 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
-
#json_configuration ⇒ Types::JsonConfiguration
Contains the configuration information of the JSON format.
-
#parquet_configuration ⇒ Types::ParquetConfiguration
Contains the configuration information of the Parquet format.
Instance Attribute Details
#json_configuration ⇒ Types::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_configuration ⇒ Types::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 |