webhooks
Creates, updates, deletes, gets or lists a webhooks resource.
Overview
| Name | webhooks |
| Type | Resource |
| Id | aws.devops_agent.webhooks |
Fields
The following fields are returned by SELECT queries:
- list_webhooks
| Name | Datatype | Description |
|---|---|---|
webhooks | array | The list of association webhooks. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_webhooks | select | agent_space_id, association_id, region | List all webhooks for given Association |
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 |
|---|---|---|
agent_space_id | string | The unique identifier of the AgentSpace |
association_id | string | The unique identifier of the given association. |
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_webhooks
List all webhooks for given Association
SELECT
webhooks
FROM aws.devops_agent.webhooks
WHERE agent_space_id = '{{ agent_space_id }}' -- required
AND association_id = '{{ association_id }}' -- required
AND region = '{{ region }}' -- required
;