interface TableReferenceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CleanRooms.CfnConfiguredTablePropsMixin.TableReferenceProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscleanrooms#CfnConfiguredTablePropsMixin_TableReferenceProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.cleanrooms.CfnConfiguredTablePropsMixin.TableReferenceProperty |
Python | aws_cdk.cfn_property_mixins.aws_cleanrooms.CfnConfiguredTablePropsMixin.TableReferenceProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_cleanrooms » CfnConfiguredTablePropsMixin » 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/cfn-property-mixins';
const tableReferenceProperty: cleanrooms.CfnConfiguredTablePropsMixin.TableReferenceProperty = {
athena: {
catalogName: 'catalogName',
databaseName: 'databaseName',
outputLocation: 'outputLocation',
region: 'region',
tableName: 'tableName',
workGroup: 'workGroup',
},
glue: {
databaseName: 'databaseName',
region: 'region',
tableName: 'tableName',
},
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