日本熟妇hd丰满老熟妇,中文字幕一区二区三区在线不卡 ,亚洲成片在线观看,免费女同在线一区二区

StartExecution - 異步調用開始一個流程的執行

開始一個流程的執行。

接口說明

  • 流程必須已經存在,當前僅支持 Standard 執行模式的流程。
  • 如果沒有指定執行名稱,則服務會自動生成執行名稱并開始執行。
  • 如果有同名執行正在進行,則不會開始新的執行,直接返回正在進行中的同名執行。
  • 如果同名執行已經結束(成功或者失敗),則會返回ExecutionAlreadyExists
  • 如果沒有同名執行,則開始新的執行。

調試

您可以在OpenAPI Explorer中直接運行該接口,免去您計算簽名的困擾。運行成功后,OpenAPI Explorer可以自動生成SDK代碼示例。

授權信息

當前API暫無授權信息透出。

請求參數

名稱類型必填描述示例值
FlowNamestring

開始執行的流程名稱。

my_flow_name
ExecutionNamestring

執行名稱,在同一流程內唯一。取值說明如下:

  • 首字母必須為英文字母(a~z)、(A~Z)或下劃線(_)。
  • 支持英文字符(a~z)或(A~Z)、數字(0~9)、下劃線(_)和短劃線(-)。
  • 區分大小寫。
  • 長度為 1~128 個字符。
my_exec_name
Inputstring

執行的輸入,為 JSON 對象格式。

{"key":"value"}
CallbackFnFTaskTokenstring

流程執行結束后回調 TaskToken 相關任務。

12

返回參數

名稱類型描述示例值
object

返回數據。

Statusstring

執行狀態。取值說明如下:

  • Starting
  • Running
  • Stopped
  • Succeeded
  • Failed
  • TimedOut
Succeeded
StoppedTimestring

執行停止時間。

2019-01-01T01:01:01.001Z
RequestIdstring

請求 ID。

testRequestId
StartedTimestring

執行開始時間。

2019-01-01T01:01:01.001Z
FlowDefinitionstring

執行的流程定義。

舊版: "type: flow\nversion: v1\nname: my_flow_name\nsteps:\n - type: pass\n name: mypass" 新版: "Type: StateMachine\nSpecVersion: v1\nName: my_flow_name\nStartAt: my_state\nStates:\n - Type: Pass\n Name: my_state\n End: true"
Outputstring

執行的輸出,為 JSON 對象格式。

{"key":"value"}
FlowNamestring

流程名稱。

my_flow_name
Namestring

執行名稱。

my_exec_name
Inputstring

執行的輸入,為 JSON 對象格式。

{"key":"value"}

示例

正常返回示例

JSON格式

{
  "Status": "Succeeded",
  "StoppedTime": "2019-01-01T01:01:01.001Z",
  "RequestId": "testRequestId",
  "StartedTime": "2019-01-01T01:01:01.001Z",
  "FlowDefinition": "舊版:\n\"type: flow\\nversion: v1\\nname: my_flow_name\\nsteps:\\n  - type: pass\\n    name: mypass\"\n\n新版:\n\"Type: StateMachine\\nSpecVersion: v1\\nName: my_flow_name\\nStartAt: my_state\\nStates:\\n  - Type: Pass\\n    Name: my_state\\n    End: true\"",
  "Output": "{\"key\":\"value\"}",
  "FlowName": "my_flow_name",
  "Name": "my_exec_name",
  "Input": "{\"key\":\"value\"}"
}

錯誤碼

HTTP status code錯誤碼錯誤信息描述
400ActionNotSupportedThe requested API operation '%s' is incorrect. Please check.-
400APIVersionNotSupportedThe requested API version '%s' is not supported yet. Please check.-
400EntityTooLargeThe payload size exceeds maximum allowed size (%s bytes).請求消息體過大。
400ExecutionAlreadyExistsExecution %s for flow %s already exists.對應流程下已存在同名執行。
400InvalidArgumentParameter error.請求參數錯誤。具體內容請參考實際錯誤信息。
400MissingRequiredHeaderThe HTTP header '%s' must be specified.請求所需參數缺失。具體內容請參考實際錯誤信息。
400MissingRequiredParamsThe HTTP query '%s' must be specified.請求所需參數缺失。具體內容請參考實際錯誤信息。
403AccessDeniedThe resources doesn't belong to you.-
403InvalidAccessKeyIDThe AccessKey ID %s is invalid.AccessKey ID無效。
403RequestTimeTooSkewedThe difference between the request time %s and the current time %s is too large.您的請求時間不正確,該請求已被識別為無效。請參考通用參數一節。
403SignatureNotMatchThe request signature we calculated does not match the signature you provided. Check your access key and signing method.您發起請求的簽名與我們計算不一致,請檢查您的簽名算法及AccessKey Secret。
404FlowNotExistsFlow %s does not exist.所請求資源不存在,請確保流程已創建。
415UnsupportedMediaTypeThe content type must be "application/json".請求消息體類型錯誤。
429ResourceThrottledThe request is throttled. Please try again later.因某些原因系統流量已達瓶頸。請稍后重試。
500InternalServerErrorAn internal error has occurred. Please retry.服務器內部錯誤。請稍后重試。

訪問錯誤中心查看更多錯誤碼。

變更歷史

變更時間變更內容概要操作
2024-03-21OpenAPI 錯誤碼發生變更、OpenAPI 入參發生變更看變更集
變更項變更內容
錯誤碼OpenAPI 錯誤碼發生變更
    刪除錯誤碼:400
    刪除錯誤碼:403
    刪除錯誤碼:404
    刪除錯誤碼:415
    刪除錯誤碼:429
    刪除錯誤碼:500
入參OpenAPI 入參發生變更
    刪除入參:RequestId