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

DeploymentCanarySettings

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

The input configuration for a canary deployment.

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

§Properties

§
percentTraffic?: number | null
[src]

The percentage (0.0-100.0) of traffic routed to the canary deployment.

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

A stage variable overrides used for the canary release deployment. They can override existing stage variables or add new stage variables for the canary release deployment. 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 release deployment uses the stage cache or not.