Class CfnConfiguredTable.AthenaTableReferenceProperty
A reference to a table within Athena.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.CleanRooms
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnConfiguredTable.AthenaTableReferenceProperty : CfnConfiguredTable.IAthenaTableReferenceProperty
Syntax (vb)
Public Class CfnConfiguredTable.AthenaTableReferenceProperty Implements CfnConfiguredTable.IAthenaTableReferenceProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.CleanRooms;
var athenaTableReferenceProperty = new AthenaTableReferenceProperty {
DatabaseName = "databaseName",
TableName = "tableName",
WorkGroup = "workGroup",
// the properties below are optional
OutputLocation = "outputLocation",
Region = "region"
};
Synopsis
Constructors
| AthenaTableReferenceProperty() | A reference to a table within Athena. |
Properties
| DatabaseName | The database name. |
| OutputLocation | The output location for the Athena table. |
| Region | The AWS Region where the Athena table is located. |
| TableName | The table reference. |
| WorkGroup | The workgroup of the Athena table reference. |
Constructors
AthenaTableReferenceProperty()
A reference to a table within Athena.
public AthenaTableReferenceProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.CleanRooms;
var athenaTableReferenceProperty = new AthenaTableReferenceProperty {
DatabaseName = "databaseName",
TableName = "tableName",
WorkGroup = "workGroup",
// the properties below are optional
OutputLocation = "outputLocation",
Region = "region"
};
Properties
DatabaseName
The database name.
public string DatabaseName { get; set; }
Property Value
Remarks
OutputLocation
The output location for the Athena table.
public string? OutputLocation { get; set; }
Property Value
Remarks
Region
The AWS Region where the Athena table is located.
public string? Region { get; set; }
Property Value
Remarks
This parameter is required to uniquely identify and access tables across different Regions.
TableName
The table reference.
public string TableName { get; set; }
Property Value
Remarks
WorkGroup
The workgroup of the Athena table reference.
public string WorkGroup { get; set; }