interface SchemaDefinitionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IoTAnalytics.CfnDatastore.SchemaDefinitionProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsiotanalytics#CfnDatastore_SchemaDefinitionProperty |
Java | software.amazon.awscdk.services.iotanalytics.CfnDatastore.SchemaDefinitionProperty |
Python | aws_cdk.aws_iotanalytics.CfnDatastore.SchemaDefinitionProperty |
TypeScript | aws-cdk-lib » 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 { aws_iotanalytics as iotanalytics } from 'aws-cdk-lib';
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
Go
Java
Python
TypeScript