@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public class CachePolicy extends Object implements Serializable, Cloneable
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
.
Constructor and Description |
---|
CachePolicy() |
Modifier and Type | Method and Description |
---|---|
CachePolicy |
clone() |
boolean |
equals(Object obj) |
CachePolicyConfig |
getCachePolicyConfig()
The cache policy configuration.
|
String |
getId()
The unique identifier for the cache policy.
|
Date |
getLastModifiedTime()
The date and time when the cache policy was last modified.
|
int |
hashCode() |
void |
setCachePolicyConfig(CachePolicyConfig cachePolicyConfig)
The cache policy configuration.
|
void |
setId(String id)
The unique identifier for the cache policy.
|
void |
setLastModifiedTime(Date lastModifiedTime)
The date and time when the cache policy was last modified.
|
String |
toString()
Returns a string representation of this object.
|
CachePolicy |
withCachePolicyConfig(CachePolicyConfig cachePolicyConfig)
The cache policy configuration.
|
CachePolicy |
withId(String id)
The unique identifier for the cache policy.
|
CachePolicy |
withLastModifiedTime(Date lastModifiedTime)
The date and time when the cache policy was last modified.
|
public void setId(String id)
The unique identifier for the cache policy.
id
- The unique identifier for the cache policy.public String getId()
The unique identifier for the cache policy.
public CachePolicy withId(String id)
The unique identifier for the cache policy.
id
- The unique identifier for the cache policy.public void setLastModifiedTime(Date lastModifiedTime)
The date and time when the cache policy was last modified.
lastModifiedTime
- The date and time when the cache policy was last modified.public Date getLastModifiedTime()
The date and time when the cache policy was last modified.
public CachePolicy withLastModifiedTime(Date lastModifiedTime)
The date and time when the cache policy was last modified.
lastModifiedTime
- The date and time when the cache policy was last modified.public void setCachePolicyConfig(CachePolicyConfig cachePolicyConfig)
The cache policy configuration.
cachePolicyConfig
- The cache policy configuration.public CachePolicyConfig getCachePolicyConfig()
The cache policy configuration.
public CachePolicy withCachePolicyConfig(CachePolicyConfig cachePolicyConfig)
The cache policy configuration.
cachePolicyConfig
- The cache policy configuration.public String toString()
toString
in class Object
Object.toString()
public CachePolicy clone()