Class CfnDatastorePropsMixin.ParquetConfigurationProperty
Contains the configuration information of the Parquet format.
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.IoTAnalytics.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnDatastorePropsMixin.ParquetConfigurationProperty : CfnDatastorePropsMixin.IParquetConfigurationProperty
Syntax (vb)
Public Class CfnDatastorePropsMixin.ParquetConfigurationProperty Implements CfnDatastorePropsMixin.IParquetConfigurationProperty
Remarks
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.Mixins.Preview.AWS.IoTAnalytics.Mixins;
var parquetConfigurationProperty = new ParquetConfigurationProperty {
SchemaDefinition = new SchemaDefinitionProperty {
Columns = new [] { new ColumnProperty {
Name = "name",
Type = "type"
} }
}
};
Synopsis
Constructors
| ParquetConfigurationProperty() | Contains the configuration information of the Parquet format. |
Properties
| SchemaDefinition | Information needed to define a schema. |
Constructors
ParquetConfigurationProperty()
Contains the configuration information of the Parquet format.
public ParquetConfigurationProperty()
Remarks
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.Mixins.Preview.AWS.IoTAnalytics.Mixins;
var parquetConfigurationProperty = new ParquetConfigurationProperty {
SchemaDefinition = new SchemaDefinitionProperty {
Columns = new [] { new ColumnProperty {
Name = "name",
Type = "type"
} }
}
};
Properties
SchemaDefinition
Information needed to define a schema.
public object? SchemaDefinition { get; set; }