interface Webhook {
    createdAt?: Date;
    domainId: string;
    eventTypes: WebhookEventType[];
    id: string;
    name: string;
    organizationId: string;
    projectId: string;
    snsArn: string;
    updatedAt?: Date;
}

Properties

createdAt?: Date

Date and time of the Webhook creation.

domainId: string

ID of the Domain to watch for triggering events.

eventTypes: WebhookEventType[]

List of event types that will trigger a Webhook Event.

id: string

ID of the Webhook.

name: string

Name of the Webhook.

organizationId: string

ID of the Webhook Organization.

projectId: string

ID of the Webhook Project.

snsArn: string

Scaleway SNS ARN topic to push the events to.

updatedAt?: Date

Date and time of last Webhook updates.