Interface CfnContinuousDeploymentPolicy.SingleHeaderConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnContinuousDeploymentPolicy.SingleHeaderConfigProperty.Jsii$Proxy
- Enclosing class:
CfnContinuousDeploymentPolicy
@Stability(Stable)
public static interface CfnContinuousDeploymentPolicy.SingleHeaderConfigProperty
extends software.amazon.jsii.JsiiSerializable
Determines which HTTP requests 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.*; SingleHeaderConfigProperty singleHeaderConfigProperty = SingleHeaderConfigProperty.builder() .header("header") .value("value") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnContinuousDeploymentPolicy.SingleHeaderConfigProperty
static final class
An implementation forCfnContinuousDeploymentPolicy.SingleHeaderConfigProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getHeader
The request header name that you want CloudFront to send to your staging distribution.The header must contain the prefix
aws-cf-cd-
.- See Also:
-
getValue
The request header value.- See Also:
-
builder
@Stability(Stable) static CfnContinuousDeploymentPolicy.SingleHeaderConfigProperty.Builder builder()
-