AppEventSources
Returns Amazon EventSources associated with applications in the account.
Table-Specific Information
Select
Returns all Amazon Event Sources associated with your account's applications.
SELECT Id, AppId, EventSourceName, EventSourceRegion FROM AppEventSources;
Insert
To insert an Amazon event source for an application, specify at least the following columns: AppId, AwsAccount, EventSourceName, and EventSourceRegion.
INSERT INTO AppEventSources(AppId, AwsAccount, EventSourceName, EventSourceRegion) VALUES('bc/account/app/59074', 'accountName', 'sourceName', 'AF_SOUTH_1');
Delete
DELETE FROM AppEventSources WHERE AppId='bc/account/app/59074' and Id = 'bc/account/app/eventsource/59074';
Columns
| Name | Type | ReadOnly | Description |
| Id [KEY] | String | True |
The ID of an event resource. |
| AccountId | String | True |
The ID of the account. |
| AppId | String | False |
The ID of the app. |
| AwsAccount | String | False |
An Amazon EventSource account ID. |
| EventSourceName | String | False |
An event source name. |
| EventSourceRegion | String | False |
The region of an event source. |
| Arn | String | True |
An Amazon EventSource resource name. |
| WebhooksCount | Long | True |
Number of webhooks attached to an Amazon EventSource. |