interface SchemaDefinitionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IoTAnalytics.CfnDatastore.SchemaDefinitionProperty |
Java | software.amazon.awscdk.services.iotanalytics.CfnDatastore.SchemaDefinitionProperty |
Python | aws_cdk.aws_iotanalytics.CfnDatastore.SchemaDefinitionProperty |
TypeScript | @aws-cdk/aws-iotanalytics » CfnDatastore » SchemaDefinitionProperty |
Information needed to define a schema.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as iotanalytics from '@aws-cdk/aws-iotanalytics';
const schemaDefinitionProperty: iotanalytics.CfnDatastore.SchemaDefinitionProperty = {
columns: [{
name: 'name',
type: 'type',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| columns? | IResolvable | IResolvable | Column[] | Specifies one or more columns that store your data. |
columns?
Type:
IResolvable | IResolvable | Column[]
(optional)
Specifies one or more columns that store your data.
Each schema can have up to 100 columns. Each column can have up to 100 nested types.

.NET
Java
Python
TypeScript