Interface CfnContinuousDeploymentPolicyPropsMixin.SingleWeightConfigProperty

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

@Stability(Stable) public static interface CfnContinuousDeploymentPolicyPropsMixin.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.cfnpropertymixins.services.cloudfront.*;
 SingleWeightConfigProperty singleWeightConfigProperty = SingleWeightConfigProperty.builder()
         .sessionStickinessConfig(SessionStickinessConfigProperty.builder()
                 .idleTtl(123)
                 .maximumTtl(123)
                 .build())
         .weight(123)
         .build();
 

See Also: