function buildDeleteRoomTypeTpl()

in cloud-infra-demo/lib/cloud-infra-demo-stack.ts [131:144]


  function buildDeleteRoomTypeTpl(functionName: string): string {
    return JSON.stringify({ 
      "userInfo" : buildUserInfoTpl(),
      "request" : {
        "code" : "$input.params().path['id']",
        "tags" : [
            {
                "code" : "$input.params().path['tagId']"
            }
        ]
    },
      "subFunction" : functionName
    });
  }