Skip to main content

event_buses

Creates, updates, deletes, gets or lists an event_buses resource.

Overview

Nameevent_buses
TypeResource
Idaws.events.event_buses

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
event_busesarrayThis list of event buses.
next_tokenstringA 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:

NameAccessible byRequired ParamsOptional ParamsDescription
list_event_busesselectregionLists 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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
;