Class: Aws::CloudFront::Types::CachePolicy

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb

Overview

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 also 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.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#cache_policy_configTypes::CachePolicyConfig

The cache policy configuration.



671
672
673
674
675
676
677
# File 'gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb', line 671

class CachePolicy < Struct.new(
  :id,
  :last_modified_time,
  :cache_policy_config)
  SENSITIVE = []
  include Aws::Structure
end

#idString

The unique identifier for the cache policy.

Returns:

  • (String)


671
672
673
674
675
676
677
# File 'gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb', line 671

class CachePolicy < Struct.new(
  :id,
  :last_modified_time,
  :cache_policy_config)
  SENSITIVE = []
  include Aws::Structure
end

#last_modified_timeTime

The date and time when the cache policy was last modified.

Returns:

  • (Time)


671
672
673
674
675
676
677
# File 'gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb', line 671

class CachePolicy < Struct.new(
  :id,
  :last_modified_time,
  :cache_policy_config)
  SENSITIVE = []
  include Aws::Structure
end