在 aws-step 函数文档中,似乎可以编写一个“选择”状态来比较当前状态的变量。但是,是否可以编写引用当前时间的时间戳比较?例如,假设我希望在我的状态$.myTime
属性中TimestampGreaterThan
的时间为[current time]
. 例如:
{
"Variable": "$.myTime",
"TimestampGreaterThan": "<the current time>",
"Next": "MyTimeSpecificState"
}
是否可以参考当前时间,还是我必须在单独的任务中手动设置状态?