Struct aws_sdk_cloudfront::model::CachePolicy
source · #[non_exhaustive]pub struct CachePolicy { /* private fields */ }
Expand description
A cache policy.
When it's attached to a cache behavior, the cache policy determines the following:
-
The values that CloudFront includes in the cache key. These values can include HTTP headers, cookies, and URL query strings. CloudFront uses the cache key to find an object in its cache that it can return to the viewer.
-
The default, minimum, and maximum time to live (TTL) values that you want objects to stay in the CloudFront cache.
The headers, cookies, and query strings that are included in the cache key are automatically included in requests that CloudFront sends to the origin. CloudFront sends a request when it can't find a valid object in its cache that matches the request's cache key. If you want to send values to the origin but not include them in the cache key, use OriginRequestPolicy
.
Implementations§
source§impl CachePolicy
impl CachePolicy
sourcepub fn last_modified_time(&self) -> Option<&DateTime>
pub fn last_modified_time(&self) -> Option<&DateTime>
The date and time when the cache policy was last modified.
sourcepub fn cache_policy_config(&self) -> Option<&CachePolicyConfig>
pub fn cache_policy_config(&self) -> Option<&CachePolicyConfig>
The cache policy configuration.
source§impl CachePolicy
impl CachePolicy
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CachePolicy
.
Trait Implementations§
source§impl Clone for CachePolicy
impl Clone for CachePolicy
source§fn clone(&self) -> CachePolicy
fn clone(&self) -> CachePolicy
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CachePolicy
impl Debug for CachePolicy
source§impl PartialEq<CachePolicy> for CachePolicy
impl PartialEq<CachePolicy> for CachePolicy
source§fn eq(&self, other: &CachePolicy) -> bool
fn eq(&self, other: &CachePolicy) -> bool
self
and other
values to be equal, and is used
by ==
.