interface TableReferenceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CleanRooms.CfnConfiguredTable.TableReferenceProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscleanrooms#CfnConfiguredTable_TableReferenceProperty |
Java | software.amazon.awscdk.services.cleanrooms.CfnConfiguredTable.TableReferenceProperty |
Python | aws_cdk.aws_cleanrooms.CfnConfiguredTable.TableReferenceProperty |
TypeScript | aws-cdk-lib » aws_cleanrooms » CfnConfiguredTable » TableReferenceProperty |
A pointer to the dataset that underlies this 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 tableReferenceProperty: cleanrooms.CfnConfiguredTable.TableReferenceProperty = {
athena: {
databaseName: 'databaseName',
tableName: 'tableName',
workGroup: 'workGroup',
// the properties below are optional
outputLocation: 'outputLocation',
region: 'region',
},
glue: {
databaseName: 'databaseName',
tableName: 'tableName',
// the properties below are optional
region: 'region',
},
snowflake: {
accountIdentifier: 'accountIdentifier',
databaseName: 'databaseName',
schemaName: 'schemaName',
secretArn: 'secretArn',
tableName: 'tableName',
tableSchema: {
v1: [{
columnName: 'columnName',
columnType: 'columnType',
}],
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| athena? | IResolvable | Athena | If present, a reference to the Athena table referred to by this table reference. |
| glue? | IResolvable | Glue | If present, a reference to the AWS Glue table referred to by this table reference. |
| snowflake? | IResolvable | Snowflake | If present, a reference to the Snowflake table referred to by this table reference. |
athena?
Type:
IResolvable | Athena
(optional)
If present, a reference to the Athena table referred to by this table reference.
glue?
Type:
IResolvable | Glue
(optional)
If present, a reference to the AWS Glue table referred to by this table reference.
snowflake?
Type:
IResolvable | Snowflake
(optional)
If present, a reference to the Snowflake table referred to by this table reference.

.NET
Go
Java
Python
TypeScript