interface CacheBehaviorProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Lightsail.CfnDistribution.CacheBehaviorProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awslightsail#CfnDistribution_CacheBehaviorProperty |
Java | software.amazon.awscdk.services.lightsail.CfnDistribution.CacheBehaviorProperty |
Python | aws_cdk.aws_lightsail.CfnDistribution.CacheBehaviorProperty |
TypeScript | aws-cdk-lib » aws_lightsail » CfnDistribution » CacheBehaviorProperty |
CacheBehavior
is a property of the AWS::Lightsail::Distribution resource. It describes the default cache behavior of an Amazon Lightsail content delivery network (CDN) distribution.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_lightsail as lightsail } from 'aws-cdk-lib';
const cacheBehaviorProperty: lightsail.CfnDistribution.CacheBehaviorProperty = {
behavior: 'behavior',
};
Properties
Name | Type | Description |
---|---|---|
behavior? | string | The cache behavior of the distribution. |
behavior?
Type:
string
(optional)
The cache behavior of the distribution.
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’sCacheBehaviorPerPath
parameter. This behavior is ideal for websites or web applications that use cookies, headers, and query strings to personalize content for individual users.