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

ListWebhookItem

import type { ListWebhookItem } from "https://aws-api.deno.dev/v0.3/services/codepipeline.ts?docs=full";

The detail returned for each webhook after listing webhooks, such as the webhook URL, the webhook name, and the webhook ARN.

interface ListWebhookItem {
arn?: string | null;
definition: WebhookDefinition;
errorCode?: string | null;
errorMessage?: string | null;
lastTriggered?: Date | number | null;
tags?: Tag[] | null;
url: string;
}

§Properties

§
arn?: string | null
[src]

The Amazon Resource Name (ARN) of the webhook.

§

The detail returned for each webhook, such as the webhook authentication type and filter rules.

§
errorCode?: string | null
[src]

The number code of the error.

§
errorMessage?: string | null
[src]

The text of the error message about the webhook.

§
lastTriggered?: Date | number | null
[src]

The date and time a webhook was last successfully triggered, in timestamp format.

§
tags?: Tag[] | null
[src]

Specifies the tags applied to the webhook.

§
url: string
[src]

A unique URL generated by CodePipeline. When a POST request is made to this URL, the defined pipeline is started as long as the body of the post request satisfies the defined authentication and filtering conditions. Deleting and re-creating a webhook makes the old URL invalid and generates a new one.