DatabaseProps

class aws_cdk.aws_glue_alpha.DatabaseProps(*, database_name=None, description=None, location_uri=None)

Bases: object

Parameters:
  • database_name (Optional[str]) – (experimental) The name of the database. Default: - generated by CDK.

  • description (Optional[str]) – (experimental) A description of the database. Default: - no database description

  • location_uri (Optional[str]) – (experimental) The location of the database (for example, an HDFS path). Default: undefined. This field is optional in AWS::Glue::Database DatabaseInput

Stability:

experimental

ExampleMetadata:

infused

Example:

glue.Database(self, "MyDatabase",
    database_name="my_database",
    description="my_database_description"
)

Attributes

database_name

(experimental) The name of the database.

Default:
  • generated by CDK.

Stability:

experimental

description

(experimental) A description of the database.

Default:
  • no database description

Stability:

experimental

location_uri

(experimental) The location of the database (for example, an HDFS path).

Default:

undefined. This field is optional in AWS::Glue::Database DatabaseInput

See:

https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseinput.html

Stability:

experimental