interface ColumnProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IoTAnalytics.CfnDatastorePropsMixin.ColumnProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsiotanalytics#CfnDatastorePropsMixin_ColumnProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.iotanalytics.CfnDatastorePropsMixin.ColumnProperty |
Python | aws_cdk.cfn_property_mixins.aws_iotanalytics.CfnDatastorePropsMixin.ColumnProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_iotanalytics » 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 { aws_iotanalytics as iotanalytics } from '@aws-cdk/cfn-property-mixins';
const columnProperty: iotanalytics.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