Show / Hide Table of Contents

Interface CfnDatastore.ISchemaDefinitionProperty

Information needed to define a schema.

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

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

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

Synopsis

Properties

Columns

Specifies one or more columns that store your data.

Properties

Columns

Specifies one or more columns that store your data.

virtual object Columns { get; }
Property Value

System.Object

Remarks

Each schema can have up to 100 columns. Each column can have up to 100 nested types.

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

Back to top Generated by DocFX