1 Answer
- Newest
- Most votes
- Most comments
0
Through process of elimination, I found the issue was with an Add-Type that created an ENUM. This doesn't appear to work when running in Lambda. Sample code:
Add-Type -TypeDefinition @"
public enum MySeasons
{
Spring,
Summer,
Autumn,
Winter
}
"@
answered 5 years ago
Relevant content
- AWS OFFICIALUpdated 3 years ago
