调用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 | 推送重试策略。取值说明如下:
|
ParamList | List<Param> | 是 | 事件传递的参数。 | |
resourceKey | String | 是 | body | 事件转换的资源参数。更多信息,请参见事件目标参数。 |
form | String | 是 | TEMPLATE | 事件转换的格式。更多信息,请参见事件目标参数。 |
value | String | 是 |
|
事件转换的值。 |
template | String | 否 | The value of ${key} is ${value}! | 模板样式。 |
返回参数
名称 | 类型 | 示例值 | 描述 |
---|---|---|---|
ErrorEntriesCount | Int |
|
处理失败的事件体数量。取值说明如下:
|
ErrorEntries | List |
|
处理失败的事件体信息。 |
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"
}
]
}