Interface CfnContinuousDeploymentPolicyProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnContinuousDeploymentPolicyProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.101.0 (build b95fe5d)", date="2024-07-22T22:42:48.416Z") @Stability(Stable) public interface CfnContinuousDeploymentPolicyProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnContinuousDeploymentPolicy.

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.*;
 CfnContinuousDeploymentPolicyProps cfnContinuousDeploymentPolicyProps = CfnContinuousDeploymentPolicyProps.builder()
         .continuousDeploymentPolicyConfig(ContinuousDeploymentPolicyConfigProperty.builder()
                 .enabled(false)
                 .stagingDistributionDnsNames(List.of("stagingDistributionDnsNames"))
                 // the properties below are optional
                 .singleHeaderPolicyConfig(SingleHeaderPolicyConfigProperty.builder()
                         .header("header")
                         .value("value")
                         .build())
                 .singleWeightPolicyConfig(SingleWeightPolicyConfigProperty.builder()
                         .weight(123)
                         // the properties below are optional
                         .sessionStickinessConfig(SessionStickinessConfigProperty.builder()
                                 .idleTtl(123)
                                 .maximumTtl(123)
                                 .build())
                         .build())
                 .trafficConfig(TrafficConfigProperty.builder()
                         .type("type")
                         // the properties below are optional
                         .singleHeaderConfig(SingleHeaderConfigProperty.builder()
                                 .header("header")
                                 .value("value")
                                 .build())
                         .singleWeightConfig(SingleWeightConfigProperty.builder()
                                 .weight(123)
                                 // the properties below are optional
                                 .sessionStickinessConfig(SessionStickinessConfigProperty.builder()
                                         .idleTtl(123)
                                         .maximumTtl(123)
                                         .build())
                                 .build())
                         .build())
                 .type("type")
                 .build())
         .build();
 

See Also: