partner_event_source_accounts
Creates, updates, deletes, gets or lists a partner_event_source_accounts resource.
Overview
| Name | partner_event_source_accounts |
| Type | Resource |
| Id | aws.events.partner_event_source_accounts |
Fields
The following fields are returned by SELECT queries:
- list_partner_event_source_accounts
| Name | Datatype | Description |
|---|---|---|
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. |
partner_event_source_accounts | array | The list of partner event sources returned by the operation. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_partner_event_source_accounts | select | region | 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. |
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_partner_event_source_accounts
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
;