Class CfnConfiguredTable.AthenaTableReferenceProperty
A reference to a table within Athena.
Implements
Inherited Members
Namespace: Amazon.CDK.AwsCleanrooms
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"
};
Synopsis
Constructors
AthenaTableReferenceProperty() | A reference to a table within Athena. |
Properties
DatabaseName | The database name. |
OutputLocation | The output location for the Athena table. |
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"
};
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
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; }