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

AwsApiGatewayCanarySettings

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

Contains information about settings for canary deployment in the stage.

interface AwsApiGatewayCanarySettings {
DeploymentId?: string | null;
PercentTraffic?: number | null;
StageVariableOverrides?: {
[key: string]: string | null | undefined;
}
| null;
UseStageCache?: boolean | null;
}

§Properties

§
DeploymentId?: string | null
[src]

The deployment identifier for the canary deployment.

§
PercentTraffic?: number | null
[src]

The percentage of traffic that is diverted to a canary deployment.

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

Stage variables that are overridden in the canary release deployment. The variables include new stage variables that are introduced in the canary.

Each variable is represented as a string-to-string map between the stage variable name and the variable value.

§
UseStageCache?: boolean | null
[src]

Indicates whether the canary deployment uses the stage cache.