Show / Hide Table of Contents

Interface CfnDatastore.IFileFormatConfigurationProperty

Contains the configuration information of file formats. AWS IoT Analytics data stores support JSON and Parquet .

Namespace: Amazon.CDK.AWS.IoTAnalytics
Assembly: Amazon.CDK.AWS.IoTAnalytics.dll
Syntax (csharp)
public interface IFileFormatConfigurationProperty
Syntax (vb)
Public Interface IFileFormatConfigurationProperty
Remarks

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.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-datastore-fileformatconfiguration.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.IoTAnalytics;

var jsonConfiguration;

FileFormatConfigurationProperty fileFormatConfigurationProperty = new FileFormatConfigurationProperty {
    JsonConfiguration = jsonConfiguration,
    ParquetConfiguration = new ParquetConfigurationProperty {
        SchemaDefinition = new SchemaDefinitionProperty {
            Columns = new [] { new ColumnProperty {
                Name = "name",
                Type = "type"
            } }
        }
    }
};

Synopsis

Properties

JsonConfiguration

Contains the configuration information of the JSON format.

ParquetConfiguration

Contains the configuration information of the Parquet format.

Properties

JsonConfiguration

Contains the configuration information of the JSON format.

virtual object JsonConfiguration { get; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-datastore-fileformatconfiguration.html#cfn-iotanalytics-datastore-fileformatconfiguration-jsonconfiguration

ParquetConfiguration

Contains the configuration information of the Parquet format.

virtual object ParquetConfiguration { get; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-datastore-fileformatconfiguration.html#cfn-iotanalytics-datastore-fileformatconfiguration-parquetconfiguration

Back to top Generated by DocFX