Interface CfnContinuousDeploymentPolicy.SingleHeaderPolicyConfigProperty

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

@Stability(Stable) public static interface CfnContinuousDeploymentPolicy.SingleHeaderPolicyConfigProperty extends software.amazon.jsii.JsiiSerializable
Defines a single header policy for a CloudFront distribution.

This property is legacy. We recommend that you use TrafficConfig and specify the SingleHeaderConfig property instead.

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.*;
 SingleHeaderPolicyConfigProperty singleHeaderPolicyConfigProperty = SingleHeaderPolicyConfigProperty.builder()
         .header("header")
         .value("value")
         .build();
 

See Also: