package com.sample.app.lambda; /** * Response object * @author Bill Chan AWS * * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: MIT-0 * */ public class Response { private String response; public String getResponse() { return response; } public void setResponse(String response) { this.response = response; } }