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

WebhookAuthConfiguration

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

The authentication applied to incoming webhook trigger requests.

interface WebhookAuthConfiguration {
AllowedIPRange?: string | null;
SecretToken?: string | null;
}

§Properties

§
AllowedIPRange?: string | null
[src]

The property used to configure acceptance of webhooks in an IP address range. For IP, only the AllowedIPRange property must be set. This property must be set to a valid CIDR range.

§
SecretToken?: string | null
[src]

The property used to configure GitHub authentication. For GITHUB_HMAC, only the SecretToken property must be set.