public GatewayResponse()

in src/main/java/com/amazonaws/model/response/GatewayResponse.java [44:48]


    public GatewayResponse(final T body, final Map<String, String> headers, final int statusCode) {
        this.statusCode = statusCode;
        this.body = body;
        this.headers = Collections.unmodifiableMap(new HashMap<>(headers));
    }