interface AthenaTableReferenceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CleanRooms.Mixins.CfnConfiguredTablePropsMixin.AthenaTableReferenceProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscleanrooms/mixins#CfnConfiguredTablePropsMixin_AthenaTableReferenceProperty |
Java | software.amazon.awscdk.mixins.preview.services.cleanrooms.mixins.CfnConfiguredTablePropsMixin.AthenaTableReferenceProperty |
Python | aws_cdk.mixins_preview.aws_cleanrooms.mixins.CfnConfiguredTablePropsMixin.AthenaTableReferenceProperty |
TypeScript | @aws-cdk/mixins-preview » aws_cleanrooms » mixins » CfnConfiguredTablePropsMixin » 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 { mixins as cleanrooms_mixins } from '@aws-cdk/mixins-preview/aws-cleanrooms';
const athenaTableReferenceProperty: cleanrooms_mixins.CfnConfiguredTablePropsMixin.AthenaTableReferenceProperty = {
databaseName: 'databaseName',
outputLocation: 'outputLocation',
region: 'region',
tableName: 'tableName',
workGroup: 'workGroup',
};
Properties
| Name | Type | Description |
|---|---|---|
| database | string | The database name. |
| output | string | The output location for the Athena table. |
| region? | string | The AWS Region where the Athena table is located. |
| table | string | The table reference. |
| work | string | The workgroup of the Athena table reference. |
databaseName?
Type:
string
(optional)
The database name.
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.
tableName?
Type:
string
(optional)
The table reference.
workGroup?
Type:
string
(optional)
The workgroup of the Athena table reference.

.NET
Go
Java
Python
TypeScript