interface DatabaseReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Glue.DatabaseReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsglue#DatabaseReference |
Java | software.amazon.awscdk.interfaces.glue.DatabaseReference |
Python | aws_cdk.interfaces.aws_glue.DatabaseReference |
TypeScript | aws-cdk-lib » interfaces » aws_glue » DatabaseReference |
A reference to a Database resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_glue as interfaces_aws_glue } from 'aws-cdk-lib/interfaces';
const databaseReference: interfaces_aws_glue.DatabaseReference = {
databaseName: 'databaseName',
};
Properties
| Name | Type | Description |
|---|---|---|
| database | string | The DatabaseName of the Database resource. |
databaseName
Type:
string
The DatabaseName of the Database resource.

.NET
Go
Java
Python
TypeScript