@Stability(value=Stable)
public static interface CfnDistribution.CacheBehaviorProperty
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.lightsail.*;
CacheBehaviorProperty cacheBehaviorProperty = CacheBehaviorProperty.builder()
.behavior("behavior")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDistribution.CacheBehaviorProperty.Builder
A builder for
CfnDistribution.CacheBehaviorProperty |
static class |
CfnDistribution.CacheBehaviorProperty.Jsii$Proxy
An implementation for
CfnDistribution.CacheBehaviorProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnDistribution.CacheBehaviorProperty.Builder |
builder() |
default String |
getBehavior()
The cache behavior of the distribution.
|
@Stability(value=Stable) @Nullable default String getBehavior()
The following cache behaviors can be specified:
cache - This option is best for static sites. When specified, your distribution caches and serves your entire website as static content. This behavior is ideal for websites with static content that doesn't change depending on who views it, or for websites that don't use cookies, headers, or query strings to personalize content.dont-cache - This option is best for sites that serve a mix of static and dynamic content. When specified, your distribution caches and serves only the content that is specified in the distribution’s CacheBehaviorPerPath parameter. This behavior is ideal for websites or web applications that use cookies, headers, and query strings to personalize content for individual users.@Stability(value=Stable) static CfnDistribution.CacheBehaviorProperty.Builder builder()
Copyright © 2022. All rights reserved.