Interface CfnConfiguredTablePropsMixin.AthenaTableReferenceProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConfiguredTablePropsMixin.AthenaTableReferenceProperty.Jsii$Proxy
- Enclosing class:
CfnConfiguredTablePropsMixin
@Stability(Stable)
public static interface CfnConfiguredTablePropsMixin.AthenaTableReferenceProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.cfnpropertymixins.services.cleanrooms.*;
AthenaTableReferenceProperty athenaTableReferenceProperty = AthenaTableReferenceProperty.builder()
.catalogName("catalogName")
.databaseName("databaseName")
.outputLocation("outputLocation")
.region("region")
.tableName("tableName")
.workGroup("workGroup")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnConfiguredTablePropsMixin.AthenaTableReferenceProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default Stringdefault StringThe database name.default StringThe output location for the Athena table.default StringThe AWS Region where the Athena table is located.default StringThe table reference.default StringThe workgroup of the Athena table reference.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCatalogName
- See Also:
-
getDatabaseName
The database name.- See Also:
-
getOutputLocation
The output location for the Athena table.- See Also:
-
getRegion
The AWS Region where the Athena table is located.This parameter is required to uniquely identify and access tables across different Regions.
- See Also:
-
getTableName
The table reference.- See Also:
-
getWorkGroup
The workgroup of the Athena table reference.- See Also:
-
builder
@Stability(Stable) static CfnConfiguredTablePropsMixin.AthenaTableReferenceProperty.Builder builder()
-