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

CanarySettings

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

Configuration settings of a canary deployment.

interface CanarySettings {
deploymentId?: string | null;
percentTraffic?: number | null;
stageVariableOverrides?: {
[key: string]: string | null | undefined;
}
| null;
useStageCache?: boolean | null;
}

§Properties

§
deploymentId?: string | null
[src]

The ID of the canary deployment.

§
percentTraffic?: number | null
[src]

The percent (0-100) of traffic diverted to a canary deployment.

§
stageVariableOverrides?: {
[key: string]: string | null | undefined;
}
| null
[src]

Stage variables overridden for a canary release deployment, including new stage variables introduced in the canary. These stage variables are represented as a string-to-string map between stage variable names and their values.

§
useStageCache?: boolean | null
[src]

A Boolean flag to indicate whether the canary deployment uses the stage cache or not.