Interface CfnDatabase.DatabaseIdentifierProperty

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

@Stability(Stable) public static interface CfnDatabase.DatabaseIdentifierProperty extends software.amazon.jsii.JsiiSerializable
A structure that describes a target database 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.*;
 DatabaseIdentifierProperty databaseIdentifierProperty = DatabaseIdentifierProperty.builder()
         .catalogId("catalogId")
         .databaseName("databaseName")
         .build();