Show / Hide Table of Contents

Class CfnDatastorePropsMixin.ParquetConfigurationProperty

Contains the configuration information of the Parquet format.

Inheritance
object
CfnDatastorePropsMixin.ParquetConfigurationProperty
Implements
CfnDatastorePropsMixin.IParquetConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: 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.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

See: 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.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; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnDatastorePropsMixin.ISchemaDefinitionProperty

Implements

CfnDatastorePropsMixin.IParquetConfigurationProperty
Back to top Generated by DocFX