StageCanarySettingArgs

data class StageCanarySettingArgs(val deploymentId: Output<String>? = null, val percentTraffic: Output<Double>? = null, val stageVariableOverrides: Output<Map<String, String>>? = null, val useStageCache: Output<Boolean>? = null) : ConvertibleToJava<StageCanarySettingArgs>

Configuration settings of a canary deployment.

Constructors

Link copied to clipboard
constructor(deploymentId: Output<String>? = null, percentTraffic: Output<Double>? = null, stageVariableOverrides: Output<Map<String, String>>? = null, useStageCache: Output<Boolean>? = null)

Properties

Link copied to clipboard
val deploymentId: Output<String>? = null

The ID of the canary deployment.

Link copied to clipboard
val percentTraffic: Output<Double>? = null

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

Link copied to clipboard
val stageVariableOverrides: Output<Map<String, String>>? = null

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.

Link copied to clipboard
val useStageCache: Output<Boolean>? = null

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

Functions

Link copied to clipboard
open override fun toJava(): StageCanarySettingArgs