interface ColumnSchemaProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CleanRoomsML.CfnTrainingDatasetPropsMixin.ColumnSchemaProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscleanroomsml#CfnTrainingDatasetPropsMixin_ColumnSchemaProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.cleanroomsml.CfnTrainingDatasetPropsMixin.ColumnSchemaProperty |
Python | aws_cdk.cfn_property_mixins.aws_cleanroomsml.CfnTrainingDatasetPropsMixin.ColumnSchemaProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_cleanroomsml » CfnTrainingDatasetPropsMixin » ColumnSchemaProperty |
Metadata for a column.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_cleanroomsml as cleanroomsml } from '@aws-cdk/cfn-property-mixins';
const columnSchemaProperty: cleanroomsml.CfnTrainingDatasetPropsMixin.ColumnSchemaProperty = {
columnName: 'columnName',
columnTypes: ['columnTypes'],
};
Properties
| Name | Type | Description |
|---|---|---|
| column | string | The name of a column. |
| column | string[] | The data type of column. |
columnName?
Type:
string
(optional)
The name of a column.
columnTypes?
Type:
string[]
(optional)
The data type of column.

.NET
Go
Java
Python
TypeScript