Class: Aws::IoTAnalytics::Types::FileFormatConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTAnalytics::Types::FileFormatConfiguration
- Defined in:
- gems/aws-sdk-iotanalytics/lib/aws-sdk-iotanalytics/types.rb
Overview
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
},
],
},
},
}
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.
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.
2392 2393 2394 2395 2396 2397 |
# File 'gems/aws-sdk-iotanalytics/lib/aws-sdk-iotanalytics/types.rb', line 2392 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.
2392 2393 2394 2395 2396 2397 |
# File 'gems/aws-sdk-iotanalytics/lib/aws-sdk-iotanalytics/types.rb', line 2392 class FileFormatConfiguration < Struct.new( :json_configuration, :parquet_configuration) SENSITIVE = [] include Aws::Structure end |