Interface CfnConfiguredTable.TableReferenceProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnConfiguredTable.TableReferenceProperty.Jsii$Proxy
Enclosing class:
CfnConfiguredTable

@Stability(Stable) public static interface CfnConfiguredTable.TableReferenceProperty extends software.amazon.jsii.JsiiSerializable
A pointer to the dataset that underlies this table.

Currently, this can only be an table.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import services.cleanrooms.*;
 TableReferenceProperty tableReferenceProperty = TableReferenceProperty.builder()
         .glue(GlueTableReferenceProperty.builder()
                 .databaseName("databaseName")
                 .tableName("tableName")
                 .build())
         .build();
 

See Also: