How can I use TypeScript and CDK to create a task that prefixes one specific field in the input while leaving the rest unchanged?
Input:
{
"field1": "foo",
"field2": "bar"
}
Desired output:
{
"field1": "baz_foo",
"field2": "bar"
}