@Stability(value=Stable)
public static interface CfnCachePolicy.HeadersConfigProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnCachePolicy.HeadersConfigProperty.Builder
A builder for
CfnCachePolicy.HeadersConfigProperty |
static class |
CfnCachePolicy.HeadersConfigProperty.Jsii$Proxy
An implementation for
CfnCachePolicy.HeadersConfigProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnCachePolicy.HeadersConfigProperty.Builder |
builder() |
String |
getHeaderBehavior()
Determines whether any HTTP headers are included in the cache key and automatically included in requests that CloudFront sends to the origin.
|
default List<String> |
getHeaders()
Contains a list of HTTP header names.
|
@Stability(value=Stable) @NotNull String getHeaderBehavior()
Valid values are:
none – HTTP headers are not included in the cache key and are not automatically included in requests that CloudFront sends to the origin. Even when this field is set to none , any headers that are listed in an OriginRequestPolicy are included in origin requests.whitelist – The HTTP headers that are listed in the Headers type are included in the cache key and are automatically included in requests that CloudFront sends to the origin.@Stability(value=Stable) @Nullable default List<String> getHeaders()
@Stability(value=Stable) static CfnCachePolicy.HeadersConfigProperty.Builder builder()
Copyright © 2022. All rights reserved.