代码之家  ›  专栏  ›  技术社区  ›  niqui

AWS StepFuncton executionArn格式

  •  1
  • niqui  · 技术社区  · 7 年前

    如果我跑步 StartExecution 指定可选参数 name (执行的名称。)

    我能拿到 executionArn 如下所示?

    stateMachineArn:name
    

    我知道我可以得到 刽子手 作为回应 StartExecution 但我想通过考试 刽子手 作为我执行的输入。

    1 回复  |  直到 7 年前
        1
  •  1
  •   SunnyD    6 年前

    使用名称字段绝对可以做到这一点。下面我举了一个例子来说明如何做到这一点:

    状态机(名称='Helloworld-test'):

    {
      "Comment": "A Hello World example of the Amazon States Language using a Pass state",
      "StartAt": "HelloWorld",
      "States": {
        "HelloWorld": {
          "Type": "Pass",
          "End": true
        }
      }
    }
    

    执行名称:

    exsname
    

    执行输入(您可以在此处构造):

    {
      "arn": "arn:aws:states:us-east-1:195788859115:execution:Helloworld-test:exsname"
    }
    

    执行输出:

    {
    “arn”:“arn:aws:states:us-east-1:195788859115:执行:Helloworld测试:exsname”
    

    希望这有帮助!