Queries all rules of an event bus.
Operation description
You can call this API operation to query all rules of an event bus.
Debugging
Authorization information
The following table shows the authorization information corresponding to the API. The authorization information can be used in the Action
policy element to grant a RAM user or RAM role the permissions to call this API operation. Description:
- Operation: the value that you can use in the Action element to specify the operation on a resource.
- Access level: the access level of each operation. The levels are read, write, and list.
- Resource type: the type of the resource on which you can authorize the RAM user or the RAM role to perform the operation. Take note of the following items:
- The required resource types are displayed in bold characters.
- If the permissions cannot be granted at the resource level,
All Resources
is used in the Resource type column of the operation.
- Condition Key: the condition key that is defined by the cloud service.
- Associated operation: other operations that the RAM user or the RAM role must have permissions to perform to complete the operation. To complete the operation, the RAM user or the RAM role must have the permissions to perform the associated operations.
Operation | Access level | Resource type | Condition key | Associated operation |
---|---|---|---|---|
eventbridge:ListRules | get | *Rule acs:eventbridge:{#regionId}:{#accountId}:eventbus/{#EventBusName}/rule/* |
| none |
Request parameters
Parameter | Type | Required | Description | Example |
---|---|---|---|---|
RuleNamePrefix | string | No | The prefix of the rule name. | test |
Limit | integer | No | The maximum number of entries to be returned in a single call. You can use this parameter and the NextToken parameter to implement paging. A maximum of 100 entries can be returned in a single call. | 50 |
NextToken | string | No | If you set the Limit parameter and excess return values exist, this parameter is returned. | 1000 |
EventBusName | string | Yes | The name of the event bus. | default |
Response parameters
Examples
Sample success responses
JSON
format
{
"Message": "Specified parameter Limit is not valid.",
"RequestId": "C7043799-F4DA-5290-9249-97C359876D97",
"Data": {
"NextToken": "1000",
"Total": 6,
"Rules": [
{
"DetailMap": {
"test": "test",
"test2": 1
},
"Status": "ENABLE",
"EventBusName": "demo",
"RuleARN": "acs:eventbridge:cn-hangzhou:123456789098****:eventbus/default/rule/myRule3",
"Description": "demo",
"Targets": [
{
"Type": "acs.mns.queue\n",
"Endpoint": "acs:mns:cn-hangzhou:123456789098****:queues/myqueue",
"Id": "177",
"PushSelector": "MATCHED_EVENT",
"ErrorsTolerance": "ALL"
}
],
"FilterPattern": "{\\\"source\\\":[\\\"acs.oss\\\"],\\\"type\\\":[\\\"oss:BucketQueried:GetBucketStat\\\"]}\n",
"CreatedTimestamp": 1607071602000,
"RuleName": "tf-testacc-rule"
}
]
},
"Code": "Success",
"Success": true
}
Error codes
HTTP status code | Error code | Error message |
---|---|---|
403 | ServiceNotEnable | Service not enable |
For a list of error codes, visit the Service error codes.
Change history
Change time | Summary of changes | Operation |
---|---|---|
2023-07-04 | The Error code has changed. The response structure of the API has changed | View Change Details |