I'm trying to update a Salesforce object using AWS AppFlow. My current process looks like this
AWS REDSHIFT --> S3 <--AppFlow --> Salesforcce
Redshift query is very basic:
UNLOAD(
'select
contact_id,
999 contact_score,
True contact_is_genius
from
salesforce.some_table')
TO XXX
FORMAT CSV
IAM_ROLE XXX
HEADER
DELIMITER
CLEANPATH;
However, I'm getting this error which I can't resolve. Any help will be greatly appreciated
Error: [{"message":"Cannot deserialize instance of boolean from VALUE_STRING value f or request may be missing a required field at [line:1, column:22]","errorCode":"JSON_PARSER_ERROR"}] Please refer the configured error bucket for more details.