Step Function - dynamodb query with Boolean Filter

0

Using Step function AWS SDK integration for querying dynamodb table with key condition and filter condition, below is the query works fine outside of step-function. When trying to save the state machine after adding this, get the below Error.

Ddb Query

{
  "TableName": "test",
  "ScanIndexForward": true,
  "KeyConditionExpression": "pk = :pk",
  "FilterExpression":"scheduled = :scheduled",
  "ExpressionAttributeValues": {
    ":pk": {
      "S": "test"
    },
    ":scheduled": {
      "BOOL":true
    }
  }
}

** Error Saving State Machine **

There are Amazon States Language errors in your state machine definition. Fix the errors to continue.

    The field "BOOL" is not supported by Step Functions

For more information, see Amazon States Language
3 Risposte
2
Risposta accettata

The optimized service integrations accept BOOL, however there is a difference between how AWS SDK integrations handle request parameters. If you switch from "BOOL" to "Bool" it will work. All parameters for AWS SDK integrations must be in PascalCase.

Source:

The API action will always be camel case, and parameter names will be Pascal case. For example, you could use Step Functions' startSyncExecution API action and specify the parameter StateMachineArn.

https://docs.aws.amazon.com/step-functions/latest/dg/supported-services-awssdk.html

AWS
wongada
con risposta 2 anni fa
1

According to this, you should change ":scheduled": { "BOOL":true } to ":scheduled": true Did not try it.

profile pictureAWS
ESPERTO
Uri
con risposta 2 anni fa
  • Thanks for your suggestion. But unfortunately this doesn't work as its javascript. Looks like internally the step-function uses JAVA SDK. Was able to figure this out from the error:

    There are Amazon States Language errors in your state machine definition. Fix the errors to continue.
    Cannot construct instance of `software.amazon.awssdk.services.dynamodb.model.AttributeValue$BuilderImpl` (although at least one Creator exists): no boolean/Boolean-argument constructor/factory method to deserialize from boolean value (true)
    For more information, see
    

    Here is the Java doc for Filter Expression. Its like chicken and egg situation here:

    1. Java sdk for dynamodb accepts only a map of <String, AttributeValue> ({"pk":{"S":"data"}, "scheduled":{"BOOL":true}}
    2. in State Language "BOOL" is a reserved keyword probably and not being accepted
-1

Querying is not supported in SFN, just get, put, delete, and update.

con risposta 2 anni fa
  • Query is supported by StepFunctions.

  • oops i was looking at optimized integrations. sorry!

Accesso non effettuato. Accedi per postare una risposta.

Una buona risposta soddisfa chiaramente la domanda, fornisce un feedback costruttivo e incoraggia la crescita professionale del richiedente.

Linee guida per rispondere alle domande