{
  "AWSTemplateFormatVersion": "2010-09-09",
  "Metadata": {},
  "Parameters": {},
  "Rules": {},
  "Mappings": {},
  "Conditions": {},
  "Resources": {
    "MyDatabase": {
      "Type": "AWS::Glue::Database",
      "Properties": {
        "CatalogId": {
          "Ref": "AWS::AccountId"
        },
        "DatabaseInput": {
          "Name": "my_database",
          "Description": {
            "Fn::Sub": "Created by the ${AWS::StackName} CloudFormation stack"
          }
        }
      }
    }
  },
  "Outputs": {}
}