Components

Type: aws:core:glueDatabase

Synopsis

Create an AWS Glue Database.

Description

A simple way to create a managed Glue database within a project.

name: string
    The name referenced as databaseRef in aws:core:glueTable.

databaseName: string
    The name of the database. Regionally unique.

removeOnDestroy: true|false
    Configured with the following:
        .removalPolicy(removeOnDestroy ? RemovalPolicy.DESTROY : RemovalPolicy.RETAIN)

tags: { key: value, ... }
    Tags to apply to the bucket.

Template

Required

{
  "type" : "aws:core:glueDatabase",
  "name" : null,
  "databaseName" : null
}

All

{
  "type" : "aws:core:glueDatabase",
  "name" : null,
  "exclude" : false,
  "databaseName" : null,
  "removeOnDestroy" : false,
  "tags" : { }
}