Interface CfnDeploymentPropsMixin.CanarySettingProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDeploymentPropsMixin.CanarySettingProperty.Jsii$Proxy
Enclosing class:
CfnDeploymentPropsMixin

@Stability(Stable) public static interface CfnDeploymentPropsMixin.CanarySettingProperty extends software.amazon.jsii.JsiiSerializable
The CanarySetting property type specifies settings for the canary deployment in this stage.

CanarySetting is a property of the StageDescription property type.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.apigateway.*;
 CanarySettingProperty canarySettingProperty = CanarySettingProperty.builder()
         .percentTraffic(123)
         .stageVariableOverrides(Map.of(
                 "stageVariableOverridesKey", "stageVariableOverrides"))
         .useStageCache(false)
         .build();
 

See Also: