interface ColumnProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTAnalytics.Mixins.CfnDatastorePropsMixin.ColumnProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotanalytics/mixins#CfnDatastorePropsMixin_ColumnProperty |
Java | software.amazon.awscdk.mixins.preview.services.iotanalytics.mixins.CfnDatastorePropsMixin.ColumnProperty |
Python | aws_cdk.mixins_preview.aws_iotanalytics.mixins.CfnDatastorePropsMixin.ColumnProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iotanalytics » mixins » CfnDatastorePropsMixin » ColumnProperty |
Contains information about a column that stores your data.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as iotanalytics_mixins } from '@aws-cdk/mixins-preview/aws-iotanalytics';
const columnProperty: iotanalytics_mixins.CfnDatastorePropsMixin.ColumnProperty = {
name: 'name',
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | The name of the column. |
| type? | string | The type of data. |
name?
Type:
string
(optional)
The name of the column.
type?
Type:
string
(optional)
The type of data.
For more information about the supported data types, see Common data types in the AWS Glue Developer Guide .

.NET
Go
Java
Python
TypeScript