interface AthenaTableReferenceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CleanRooms.CfnConfiguredTable.AthenaTableReferenceProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscleanrooms#CfnConfiguredTable_AthenaTableReferenceProperty |
Java | software.amazon.awscdk.services.cleanrooms.CfnConfiguredTable.AthenaTableReferenceProperty |
Python | aws_cdk.aws_cleanrooms.CfnConfiguredTable.AthenaTableReferenceProperty |
TypeScript | aws-cdk-lib » aws_cleanrooms » CfnConfiguredTable » AthenaTableReferenceProperty |
A reference to a table within Athena.
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 athenaTableReferenceProperty: cleanrooms.CfnConfiguredTable.AthenaTableReferenceProperty = {
databaseName: 'databaseName',
tableName: 'tableName',
workGroup: 'workGroup',
// the properties below are optional
outputLocation: 'outputLocation',
region: 'region',
};
Properties
| Name | Type | Description |
|---|---|---|
| database | string | The database name. |
| table | string | The table reference. |
| work | string | The workgroup of the Athena table reference. |
| output | string | The output location for the Athena table. |
| region? | string | The AWS Region where the Athena table is located. |
databaseName
Type:
string
The database name.
tableName
Type:
string
The table reference.
workGroup
Type:
string
The workgroup of the Athena table reference.
outputLocation?
Type:
string
(optional)
The output location for the Athena table.
region?
Type:
string
(optional)
The AWS Region where the Athena table is located.
This parameter is required to uniquely identify and access tables across different Regions.

.NET
Go
Java
Python
TypeScript