event_buses
Creates, updates, deletes, gets or lists an event_buses resource.
Overview
| Name | event_buses |
| Type | Resource |
| Id | aws.events.event_buses |
Fields
The following fields are returned by SELECT queries:
- list_event_buses
| Name | Datatype | Description |
|---|---|---|
event_buses | array | This list of event buses. |
next_token | string | A token indicating there are more results available. If there are no more results, no token is included in the response. The value of nextToken is a unique pagination token for each page. To retrieve the next page of results, make the call again using the returned token. Keep all other arguments unchanged. Using an expired pagination token results in an HTTP 400 InvalidToken error. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_event_buses | select | region | Lists all the event buses in your account, including the default event bus, custom event buses, and partner event buses. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_event_buses
Lists all the event buses in your account, including the default event bus, custom event buses, and partner event buses.
SELECT
event_buses,
next_token
FROM aws.events.event_buses
WHERE region = '{{ region }}' -- required
;