Amazon web services – Converting string response from CDK Custom resource to list of strings
dI created a custom resource through CDK and return a certain "CommaSeparatedString" as part of the response return { Status: "SUCCESS", RequestId: event.RequestId, StackId: event.StackId, LogicalResourceId: event.LogicalResourceId, PhysicalResourceId: event.ServiceToken, Data: { CommaSeparatedString: "ABC,XYZ,TTT"}, }; I then access this in my…