如何使用 Cloud Formation 模板安排 AWS App 流程

How to schedule AWS App flow using Cloud Formation Template

我已经使用云形成模板创建了 AWS 应用程序流,我想使用触发器配置来安排应用程序流。 我们如何使用云形成传递日期 ScheduleStartTime?

我收到错误

AWS::AppFlow::FlowCreate Flow request failed: [Schedule start time cannot be in the past. Please update the schedule start time to a value in future.

我在云形成中使用的片段,

"TriggerConfig": {
          "TriggerType": "Scheduled",
          "TriggerProperties": {
            "DataPullMode": "Incremental",
            "ScheduleExpression": "rate(5minutes)",
            "TimeZone": "America/New_York",
            "ScheduleStartTime" : 4.05
          }
        }

尝试使用 ScheduleInterval 参数代替 ScheduleExpression

TriggerConfig:
         TriggerType: Scheduled
         TriggerProperties:
              DataPullMode: Incremental
              ScheduleExpression: rate(1days)
              ScheduleStartTime: 1652970600
      

开始时间使用 Unix 时间戳。
换算请参考以下link
https://www.epochconverter.com/