Show / Hide Table of Contents

Interface CfnDatastore.IParquetConfigurationProperty

Contains the configuration information of the Parquet format.

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

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-datastore-parquetconfiguration.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;

ParquetConfigurationProperty parquetConfigurationProperty = new ParquetConfigurationProperty {
    SchemaDefinition = new SchemaDefinitionProperty {
        Columns = new [] { new ColumnProperty {
            Name = "name",
            Type = "type"
        } }
    }
};

Synopsis

Properties

SchemaDefinition

Information needed to define a schema.

Properties

SchemaDefinition

Information needed to define a schema.

virtual object SchemaDefinition { get; }
Property Value

System.Object

Remarks

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

Back to top Generated by DocFX