This example creates the foreign table sensordata where the Payload column is defined with the Latin character set.
CREATE MULTISET FOREIGN TABLE sensordata (
Location VARCHAR(2048) CHARACTER SET UNICODE CASESPECIFIC,
Payload JSON(16776192) INLINE LENGTH 64000 CHARACTER SET LATIN)
USING (
LOCATION ('/S3/YOUR-BUCKET.s3.amazonaws.com/data/logs')
PATHPATTERN ('$Var1/$Var2/$var3/$Var4/$date')
)
NO PRIMARY INDEX;