const regionTable = new cdk.CfnMapping(this, "RegionTable", {
mapping: {
regionName: {
"us-east-1": "value-one",
"us-west-2": "value-two",
},
},
});
However, this is not working as documented. It's throwing this error:
"Template format error: Mappings attribute name 'us-east-1' must contain only alphanumeric characters."