DatabaseReference

class aws_cdk.aws_glue.DatabaseReference(*, database_name)

Bases: object

A reference to a Database resource.

Parameters:

database_name (str) – The DatabaseName of the Database resource.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_glue as glue

database_reference = glue.DatabaseReference(
    database_name="databaseName"
)

Attributes

database_name

The DatabaseName of the Database resource.