Class CfnDatastore.ParquetConfigurationProperty
Contains the configuration information of the Parquet format.
Inheritance
System.Object
    CfnDatastore.ParquetConfigurationProperty
  Implements
Namespace: Amazon.CDK.AWS.IoTAnalytics
Assembly: Amazon.CDK.AWS.IoTAnalytics.dll
Syntax (csharp)
public class ParquetConfigurationProperty : Object, CfnDatastore.IParquetConfigurationPropertySyntax (vb)
Public Class ParquetConfigurationProperty
    Inherits Object
    Implements CfnDatastore.IParquetConfigurationPropertyRemarks
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 parquetConfigurationProperty = new ParquetConfigurationProperty {
    SchemaDefinition = new SchemaDefinitionProperty {
        Columns = new [] { new ColumnProperty {
            Name = "name",
            Type = "type"
        } }
    }
};Synopsis
Constructors
| ParquetConfigurationProperty() | 
Properties
| SchemaDefinition | Information needed to define a schema. | 
Constructors
ParquetConfigurationProperty()
public ParquetConfigurationProperty()Properties
SchemaDefinition
Information needed to define a schema.
public object SchemaDefinition { get; set; }Property Value
System.Object