Interface CfnOriginRequestPolicy.HeadersConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnOriginRequestPolicy.HeadersConfigProperty.Jsii$Proxy
- Enclosing class:
CfnOriginRequestPolicy
@Stability(Stable)
public static interface CfnOriginRequestPolicy.HeadersConfigProperty
extends software.amazon.jsii.JsiiSerializable
An object that determines whether any HTTP headers (and if so, which headers) are included in requests that CloudFront sends to the origin.
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.*; HeadersConfigProperty headersConfigProperty = HeadersConfigProperty.builder() .headerBehavior("headerBehavior") // the properties below are optional .headers(List.of("headers")) .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnOriginRequestPolicy.HeadersConfigProperty
static final class
An implementation forCfnOriginRequestPolicy.HeadersConfigProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
Determines whether any HTTP headers are included in requests that CloudFront sends to the origin.Contains a list of HTTP header names.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getHeaderBehavior
Determines whether any HTTP headers are included in requests that CloudFront sends to the origin. Valid values are:.none
– No HTTP headers in viewer requests are included in requests that CloudFront sends to the origin. Even when this field is set tonone
, any headers that are listed in aCachePolicy
are included in origin requests.whitelist
– Only the HTTP headers that are listed in theHeaders
type are included in requests that CloudFront sends to the origin.allViewer
– All HTTP headers in viewer requests are included in requests that CloudFront sends to the origin.allViewerAndWhitelistCloudFront
– All HTTP headers in viewer requests and the additional CloudFront headers that are listed in theHeaders
type are included in requests that CloudFront sends to the origin. The additional headers are added by CloudFront.allExcept
– All HTTP headers in viewer requests are included in requests that CloudFront sends to the origin, except for those listed in theHeaders
type, which are not included.
- See Also:
-
getHeaders
Contains a list of HTTP header names.- See Also:
-
builder
-