interface TableReferenceProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.aws_cleanrooms.CfnConfiguredTable.TableReferenceProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awscleanrooms#CfnConfiguredTable_TableReferenceProperty |
![]() | software.amazon.awscdk.services.cleanrooms.CfnConfiguredTable.TableReferenceProperty |
![]() | aws_cdk.aws_cleanrooms.CfnConfiguredTable.TableReferenceProperty |
![]() | 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',
},
glue: {
databaseName: 'databaseName',
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.