interface TableReferenceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CleanRooms.Mixins.CfnConfiguredTablePropsMixin.TableReferenceProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscleanrooms/mixins#CfnConfiguredTablePropsMixin_TableReferenceProperty |
Java | software.amazon.awscdk.mixins.preview.services.cleanrooms.mixins.CfnConfiguredTablePropsMixin.TableReferenceProperty |
Python | aws_cdk.mixins_preview.aws_cleanrooms.mixins.CfnConfiguredTablePropsMixin.TableReferenceProperty |
TypeScript | @aws-cdk/mixins-preview » aws_cleanrooms » mixins » 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 { mixins as cleanrooms_mixins } from '@aws-cdk/mixins-preview/aws-cleanrooms';
const tableReferenceProperty: cleanrooms_mixins.CfnConfiguredTablePropsMixin.TableReferenceProperty = {
athena: {
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