Class: Aws::Lightsail::Types::CacheBehavior
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lightsail::Types::CacheBehavior
- Defined in:
- gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb
Overview
When making an API call, you may pass CacheBehavior data as a hash:
{
behavior: "dont-cache", # accepts dont-cache, cache
}
Describes the default cache behavior of an Amazon Lightsail content delivery network (CDN) distribution.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#behavior ⇒ String
The cache behavior of the distribution.
Instance Attribute Details
#behavior ⇒ String
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 serve 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.
1456 1457 1458 1459 1460 |
# File 'gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb', line 1456 class CacheBehavior < Struct.new( :behavior) SENSITIVE = [] include Aws::Structure end |