Skip to main content

partner_event_source_accounts

Creates, updates, deletes, gets or lists a partner_event_source_accounts resource.

Overview

Namepartner_event_source_accounts
TypeResource
Idaws.events.partner_event_source_accounts

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
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.
partner_event_source_accountsarrayThe list of partner event sources returned by the operation.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_partner_event_source_accountsselectregionAn SaaS partner can use this operation to display the Amazon Web Services account ID that a particular partner event source name is associated with. This operation is not used by Amazon Web Services customers.

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

An SaaS partner can use this operation to display the Amazon Web Services account ID that a particular partner event source name is associated with. This operation is not used by Amazon Web Services customers.

SELECT
next_token,
partner_event_source_accounts
FROM aws.events.partner_event_source_accounts
WHERE region = '{{ region }}' -- required
;