in aws-lambda-java-events/src/main/java/com/amazonaws/services/lambda/runtime/events/APIGatewayProxyRequestEvent.java [467:506]
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (getAccountId() != null)
sb.append("accountId: ").append(getAccountId()).append(",");
if (getResourceId() != null)
sb.append("resourceId: ").append(getResourceId()).append(",");
if (getStage() != null)
sb.append("stage: ").append(getStage()).append(",");
if (getRequestId() != null)
sb.append("requestId: ").append(getRequestId()).append(",");
if (getIdentity() != null)
sb.append("identity: ").append(getIdentity().toString()).append(",");
if (getResourcePath() != null)
sb.append("resourcePath: ").append(getResourcePath()).append(",");
if (getHttpMethod() != null)
sb.append("httpMethod: ").append(getHttpMethod()).append(",");
if (getApiId() != null)
sb.append("apiId: ").append(getApiId()).append(",");
if (getPath() != null)
sb.append("path: ").append(getPath()).append(",");
if (getAuthorizer() != null)
sb.append("authorizer: ").append(getAuthorizer().toString());
if (getOperationName() != null)
sb.append("operationName: ").append(getOperationName().toString());
if (getExtendedRequestId() != null)
sb.append("extendedRequestId: ").append(getExtendedRequestId()).append(",");
if (getRequestTime() != null)
sb.append("requestTime: ").append(getRequestTime()).append(",");
if (getProtocol() != null)
sb.append("protocol: ").append(getProtocol()).append(",");
if (getRequestTimeEpoch() != null)
sb.append("requestTimeEpoch: ").append(getRequestTimeEpoch()).append(",");
if (getDomainPrefix() != null)
sb.append("domainPrefix: ").append(getDomainPrefix()).append(",");
if (getDomainName() != null)
sb.append("domainName: ").append(getDomainName());
sb.append("}");
return sb.toString();
}