Interface CfnTable.TableIdentifierProperty

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

@Stability(Stable) public static interface CfnTable.TableIdentifierProperty extends software.amazon.jsii.JsiiSerializable
A structure that describes a target table for resource linking.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.glue.*;
 TableIdentifierProperty tableIdentifierProperty = TableIdentifierProperty.builder()
         .catalogId("catalogId")
         .databaseName("databaseName")
         .name("name")
         .build();