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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDatabase.DatabaseIdentifierPropertystatic final classAn implementation forCfnDatabase.DatabaseIdentifierProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCatalogId
The ID of the Data Catalog in which the database resides. -
getDatabaseName
The name of the catalog database. -
builder
-