Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Webhook

import type { Webhook } from "https://aws-api.deno.dev/v0.4/services/amplify.ts?docs=full";

Describes a webhook that connects repository events to an Amplify app.

interface Webhook {
branchName: string;
createTime: Date | number;
description: string;
updateTime: Date | number;
webhookArn: string;
webhookId: string;
webhookUrl: string;
}

§Properties

§
branchName: string
[src]

The name for a branch that is part of an Amplify app.

§
createTime: Date | number
[src]

The create date and time for a webhook.

§
description: string
[src]

The description for a webhook.

§
updateTime: Date | number
[src]

Updates the date and time for a webhook.

§
webhookArn: string
[src]

The Amazon Resource Name (ARN) for the webhook.

§
webhookId: string
[src]

The ID of the webhook.

§
webhookUrl: string
[src]

The URL of the webhook.