I am trying to return two cookies from Lambda to client(Postman) via APIGateway. I referred to the aws blog, and could return 1 cookie to client.
But I have no idea to return 2 kind of cookies. I tried like this, but not working.
return {
   'cookie': 'aaa=bbb; secure'               -> Okay, but just one cookie
    # 'cookie': 'aaa=bbb; ccc=ddd; secure'   -> ×
    # 'cookie': ['aaa=bbb','ccc=ddd']        -> ×
}

 
     
     
    