interface SnowflakeTableReferenceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CleanRooms.Mixins.CfnConfiguredTablePropsMixin.SnowflakeTableReferenceProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscleanrooms/mixins#CfnConfiguredTablePropsMixin_SnowflakeTableReferenceProperty |
Java | software.amazon.awscdk.mixins.preview.services.cleanrooms.mixins.CfnConfiguredTablePropsMixin.SnowflakeTableReferenceProperty |
Python | aws_cdk.mixins_preview.aws_cleanrooms.mixins.CfnConfiguredTablePropsMixin.SnowflakeTableReferenceProperty |
TypeScript | @aws-cdk/mixins-preview » aws_cleanrooms » mixins » CfnConfiguredTablePropsMixin » 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 { mixins as cleanrooms_mixins } from '@aws-cdk/mixins-preview/aws-cleanrooms';
const snowflakeTableReferenceProperty: cleanrooms_mixins.CfnConfiguredTablePropsMixin.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
(optional)
The account identifier for the Snowflake table reference.
databaseName?
Type:
string
(optional)
The name of the database the Snowflake table belongs to.
schemaName?
Type:
string
(optional)
The schema name of the Snowflake table reference.
secretArn?
Type:
string
(optional)
The secret ARN of the Snowflake table reference.
tableName?
Type:
string
(optional)
The name of the Snowflake table.
tableSchema?
Type:
IResolvable | Snowflake
(optional)
The schema of the Snowflake table.

.NET
Go
Java
Python
TypeScript