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()
         .databaseName("databaseName")
         .outputLocation("outputLocation")
         .region("region")
         .tableName("tableName")
         .workGroup("workGroup")
         .build();
 

See Also: