Skip to main content

webhooks

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

Overview

Namewebhooks
TypeResource
Idaws.devops_agent.webhooks

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
webhooksarrayThe list of association webhooks.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_webhooksselectagent_space_id, association_id, regionList 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.

NameDatatypeDescription
agent_space_idstringThe unique identifier of the AgentSpace
association_idstringThe unique identifier of the given association.
regionstringAWS region (default: us-east-1)

SELECT examples

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
;