Interface CfnContinuousDeploymentPolicy.SingleWeightConfigProperty

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

@Stability(Stable) public static interface CfnContinuousDeploymentPolicy.SingleWeightConfigProperty extends software.amazon.jsii.JsiiSerializable
This configuration determines the percentage of HTTP requests that are sent to the staging distribution.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.cloudfront.*;
 SingleWeightConfigProperty singleWeightConfigProperty = SingleWeightConfigProperty.builder()
         .weight(123)
         // the properties below are optional
         .sessionStickinessConfig(SessionStickinessConfigProperty.builder()
                 .idleTtl(123)
                 .maximumTtl(123)
                 .build())
         .build();