在AWS Step Function中使用带引号的参数

时间:2019-03-13 21:54:14

标签: aws-lambda aws-step-functions

我正在创建一个将参数发送给lambda的step函数。 我要传递的参数需要包含单引号。 我将其传递为:

"Parameters": {
 "eventTime.$": "'$.Records[0]['eventTime']'"
}

从调用此步骤函数的lambda传递$ .Records [0] ['eventTime']时。

但是当我尝试上述操作时,我得到一个错误:

There is a problem with your ASL definition, please review it and try again
The value for the field 'evenTime.$' must be a valid JSONpath

尝试使用各种转义字符约定(\'等),但我收到此语法错误消息。

有人知道如何解决吗? 谢谢

0 个答案:

没有答案