interface SnowflakeTableSchemaProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CleanRooms.CfnConfiguredTable.SnowflakeTableSchemaProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscleanrooms#CfnConfiguredTable_SnowflakeTableSchemaProperty |
Java | software.amazon.awscdk.services.cleanrooms.CfnConfiguredTable.SnowflakeTableSchemaProperty |
Python | aws_cdk.aws_cleanrooms.CfnConfiguredTable.SnowflakeTableSchemaProperty |
TypeScript | aws-cdk-lib » aws_cleanrooms » CfnConfiguredTable » 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-lib';
const snowflakeTableSchemaProperty: cleanrooms.CfnConfiguredTable.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)[]
The schema of a Snowflake table.

.NET
Go
Java
Python
TypeScript