interface SnowflakeTableReferenceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CleanRooms.CfnConfiguredTable.SnowflakeTableReferenceProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscleanrooms#CfnConfiguredTable_SnowflakeTableReferenceProperty |
Java | software.amazon.awscdk.services.cleanrooms.CfnConfiguredTable.SnowflakeTableReferenceProperty |
Python | aws_cdk.aws_cleanrooms.CfnConfiguredTable.SnowflakeTableReferenceProperty |
TypeScript | aws-cdk-lib » aws_cleanrooms » CfnConfiguredTable » SnowflakeTableReferenceProperty |
A reference to a table within Snowflake.
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 snowflakeTableReferenceProperty: cleanrooms.CfnConfiguredTable.SnowflakeTableReferenceProperty = {
accountIdentifier: 'accountIdentifier',
databaseName: 'databaseName',
schemaName: 'schemaName',
secretArn: 'secretArn',
tableName: 'tableName',
tableSchema: {
v1: [{
columnName: 'columnName',
columnType: 'columnType',
}],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| account | string | The account identifier for the Snowflake table reference. |
| database | string | The name of the database the Snowflake table belongs to. |
| schema | string | The schema name of the Snowflake table reference. |
| secret | string | The secret ARN of the Snowflake table reference. |
| table | string | The name of the Snowflake table. |
| table | IResolvable | Snowflake | The schema of the Snowflake table. |
accountIdentifier
Type:
string
The account identifier for the Snowflake table reference.
databaseName
Type:
string
The name of the database the Snowflake table belongs to.
schemaName
Type:
string
The schema name of the Snowflake table reference.
secretArn
Type:
string
The secret ARN of the Snowflake table reference.
tableName
Type:
string
The name of the Snowflake table.
tableSchema
Type:
IResolvable | Snowflake
The schema of the Snowflake table.

.NET
Go
Java
Python
TypeScript