interface SnowflakeTableSchemaProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CleanRooms.CfnConfiguredTablePropsMixin.SnowflakeTableSchemaProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscleanrooms#CfnConfiguredTablePropsMixin_SnowflakeTableSchemaProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.cleanrooms.CfnConfiguredTablePropsMixin.SnowflakeTableSchemaProperty |
Python | aws_cdk.cfn_property_mixins.aws_cleanrooms.CfnConfiguredTablePropsMixin.SnowflakeTableSchemaProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_cleanrooms » CfnConfiguredTablePropsMixin » SnowflakeTableSchemaProperty |
The schema of a Snowflake table.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_cleanrooms as cleanrooms } from '@aws-cdk/cfn-property-mixins';
const snowflakeTableSchemaProperty: cleanrooms.CfnConfiguredTablePropsMixin.SnowflakeTableSchemaProperty = {
v1: [{
columnName: 'columnName',
columnType: 'columnType',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| v1? | IResolvable | (IResolvable | Snowflake)[] | The schema of a Snowflake table. |
v1?
Type:
IResolvable | (IResolvable | Snowflake)[]
(optional)
The schema of a Snowflake table.

.NET
Go
Java
Python
TypeScript