调用CreateTargets接口在一个规则下创建一个或多个规则投递目标。

URI

/openapi/createTargets

请求参数

名称 类型 是否必选 示例值 描述
EventBusName String default 事件总线的名称。更多信息,请参见使用限制
RuleName String myRule2 事件规则的名称。更多信息,请参见使用限制
Targets List<Target> 需要新增的Target列表。更多信息,请参见使用限制
Id String target5 自定义TargetId。
Type String acs.fc.function 目标Target类型。
Endpoint String acs:fc:cn-hangzhou:123456789098****:services/guide.LATEST/functions/HelloFC 投递端点链接。
PushRetryStrategy String BACKOFF_RETRY 推送重试策略。取值说明如下:
  • BACKOFF_RETRY:退避重试策略。重试3次,每次重试的间隔时间是10秒到20秒之间的随机值。
  • EXPONENTIAL_DECAY_RETRY:指数衰减重试。重试176次,每次重试的间隔时间指数递增至512秒,总计重试时间为1天;每次重试的具体间隔为:1,2,4,8,16,32,64,128,256,512,512...512秒(共167个512)。
ParamList List<Param> 事件传递的参数。
resourceKey String body 事件转换的资源参数。更多信息,请参见事件目标参数
form String TEMPLATE 事件转换的格式。更多信息,请参见事件目标参数
value String
{\"key\"=\"value\"}
事件转换的值。
template String The value of ${key} is ${value}! 模板样式。

返回参数

名称 类型 示例值 描述
ErrorEntriesCount Int
  • 0
  • 1
处理失败的事件体数量。取值说明如下:
  • 取值为0:所有事件均正常处理。
  • 取值为除0以外的其他整数:处理失败的事件个数。
ErrorEntries List
  • [
        {
            "ErrorCode":"EventRuleTargetIdDuplicate",
            "ErrorMessage":"The id of event target is duplicate! ",
            "EntryId":"target5"
        }
    ]
处理失败的事件体信息。
ErrorCode String EventRuleTargetIdDuplicate 错误码。
ErrorMessage String The id of event target is duplicate! 错误详细描述。
EntryId String target5 处理失败的事件体编号。

示例

请求示例

POST /openapi/createTargets HTTP/1.1
Host: 123456789098****.eventbridge.cn-hangzhou.aliyuncs.com
Date: Sat, 18 Apr 2020 05:30:41 GMT
x-eventbridge-version: 2020-04-01
Authorization: acs vZ3VL0SuJdHi****:Jo2PbTj******zYAYoYslKLvWzg=
Content-Type: application/json;charset=UTF-8
Content-Length: 26

{
    "EventBusName":"default",
    "RuleName":"myRule2",
    "Targets":[
        {
            "Id":"target5",
            "Type":"acs.fc.function",
            "Endpoint":"acs:fc:cn-hangzhou:123456789098****:services/guide.LATEST/functions/HelloFC",
            "PushRetryStrategy":"BACKOFF_RETRY",
            "ParamList":[
                {
                    "resourceKey":"serviceName",
                    "form":"CONSTANT",
                    "value":"guide"
                },
                {
                    "resourceKey":"functionName",
                    "form":"CONSTANT",
                    "value":"HelloFC"
                },
                {
                    "resourceKey":"body",
                    "form":"TEMPLATE",
                    "value":"{\"key\"=\"value\"}",
                    "template":"The value of ${key} is ${value}!"
                }
            ]
        }
    ]
}

返回示例一:创建正常

HTTP/1.1 200 OK
Server: AliyunEventBridge
Connection: keep-alive
Content-Type: application/json;charset=utf-8
Content-Length: 79
x-eventbridge-request-id: 5E9A908133324571D800****
Date: Sat, 18 Apr 2020 05:30:41 GMT

{
    "errorEntriesCount":0,
    "errorEntries":[

    ]
}

返回示例二:创建异常

HTTP/1.1 200 OK
Server: AliyunEventBridge
Connection: keep-alive
Content-Type: application/json;charset=utf-8
Content-Length: 79
x-eventbridge-request-id: 5E9A908133324571D800****
Date: Sat, 18 Apr 2020 05:30:41 GMT

{
    "errorEntriesCount":1,
    "errorEntries":[
    {
        "ErrorCode":"EventRuleTargetIdDuplicate",
        "ErrorMessage":"The id of event target is duplicate! ",
        "EntryId":"target5"
    }
]
}