I was on the dotnet documentation for AWS Glue and...
# general
h
I was on the dotnet documentation for AWS Glue and noticed that in the code examples that the character sets and entity sets are not properly parsed out
Copy code
using Pulumi;
using Aws = Pulumi.Aws;

class MyStack : Stack
{
public MyStack()
{
    var awsGlueCatalogDatabase = new Aws.Glue.CatalogDatabase("awsGlueCatalogDatabase", new Aws.Glue.CatalogDatabaseArgs
    {
        Name = "MyCatalogDatabase",
    });
}

}