public String toString()

in aws-lambda-java-events/src/main/java/com/amazonaws/services/lambda/runtime/events/APIGatewayProxyRequestEvent.java [966:997]


        public String toString() {
            StringBuilder sb = new StringBuilder();
            sb.append("{");
            if (getCognitoIdentityPoolId() != null)
                sb.append("cognitoIdentityPoolId: ").append(getCognitoIdentityPoolId()).append(",");
            if (getAccountId() != null)
                sb.append("accountId: ").append(getAccountId()).append(",");
            if (getCognitoIdentityId() != null)
                sb.append("cognitoIdentityId: ").append(getCognitoIdentityId()).append(",");
            if (getCaller() != null)
                sb.append("caller: ").append(getCaller()).append(",");
            if (getApiKey() != null)
                sb.append("apiKey: ").append(getApiKey()).append(",");
            if (getPrincipalOrgId() != null)
                sb.append("principalOrgId: ").append(getPrincipalOrgId()).append(",");
            if (getSourceIp() != null)
                sb.append("sourceIp: ").append(getSourceIp()).append(",");
            if (getCognitoAuthenticationType() != null)
                sb.append("eventTriggerConfigId: ").append(getCognitoAuthenticationType()).append(",");
            if (getCognitoAuthenticationProvider() != null)
                sb.append("cognitoAuthenticationProvider: ").append(getCognitoAuthenticationProvider()).append(",");
            if (getUserArn() != null)
                sb.append("userArn: ").append(getUserArn()).append(",");
            if (getUserAgent() != null)
                sb.append("userAgent: ").append(getUserAgent()).append(",");
            if (getUser() != null)
                sb.append("user: ").append(getUser()).append(",");
            if (getAccessKey() != null)
                sb.append("accessKey: ").append(getAccessKey());
            sb.append("}");
            return sb.toString();
        }