I’ve got a Kinesis Data Stream with an attached lambda.
Records are JSON, like this:
{
"int_attribute": 1,
"boolean_attribute": true
}
I can successfully filter the stream by “int_attribute” but I cannot do that for “boolean_attribute”.
Here is my filter definition:
[
{
"Pattern": "{ "data": { "int_attribute": [ 1 ], "booelan_attribute": [ true ] }}"
}
]
but it doesn’t work.
Any hint?