CloudFront / Client / create_cache_policy
create_cache_policy#
- CloudFront.Client.create_cache_policy(**kwargs)#
Creates a cache policy.
After you create a cache policy, you can attach it to one or more cache behaviors. 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 an 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
.For more information about cache policies, see Controlling the cache key in the Amazon CloudFront Developer Guide.
See also: AWS API Documentation
Request Syntax
response = client.create_cache_policy( CachePolicyConfig={ 'Comment': 'string', 'Name': 'string', 'DefaultTTL': 123, 'MaxTTL': 123, 'MinTTL': 123, 'ParametersInCacheKeyAndForwardedToOrigin': { 'EnableAcceptEncodingGzip': True|False, 'EnableAcceptEncodingBrotli': True|False, 'HeadersConfig': { 'HeaderBehavior': 'none'|'whitelist', 'Headers': { 'Quantity': 123, 'Items': [ 'string', ] } }, 'CookiesConfig': { 'CookieBehavior': 'none'|'whitelist'|'allExcept'|'all', 'Cookies': { 'Quantity': 123, 'Items': [ 'string', ] } }, 'QueryStringsConfig': { 'QueryStringBehavior': 'none'|'whitelist'|'allExcept'|'all', 'QueryStrings': { 'Quantity': 123, 'Items': [ 'string', ] } } } } )
- Parameters:
CachePolicyConfig (dict) –
[REQUIRED]
A cache policy configuration.
Comment (string) –
A comment to describe the cache policy. The comment cannot be longer than 128 characters.
Name (string) – [REQUIRED]
A unique name to identify the cache policy.
DefaultTTL (integer) –
The default amount of time, in seconds, that you want objects to stay in the CloudFront cache before CloudFront sends another request to the origin to see if the object has been updated. CloudFront uses this value as the object’s time to live (TTL) only when the origin does not send
Cache-Control
orExpires
headers with the object. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.The default value for this field is 86400 seconds (one day). If the value of
MinTTL
is more than 86400 seconds, then the default value for this field is the same as the value ofMinTTL
.MaxTTL (integer) –
The maximum amount of time, in seconds, that objects stay in the CloudFront cache before CloudFront sends another request to the origin to see if the object has been updated. CloudFront uses this value only when the origin sends
Cache-Control
orExpires
headers with the object. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.The default value for this field is 31536000 seconds (one year). If the value of
MinTTL
orDefaultTTL
is more than 31536000 seconds, then the default value for this field is the same as the value ofDefaultTTL
.MinTTL (integer) – [REQUIRED]
The minimum amount of time, in seconds, that you want objects to stay in the CloudFront cache before CloudFront sends another request to the origin to see if the object has been updated. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.
ParametersInCacheKeyAndForwardedToOrigin (dict) –
The HTTP headers, cookies, and URL query strings to include in the cache key. The values included in the cache key are also included in requests that CloudFront sends to the origin.
EnableAcceptEncodingGzip (boolean) – [REQUIRED]
A flag that can affect whether the
Accept-Encoding
HTTP header is included in the cache key and included in requests that CloudFront sends to the origin.This field is related to the
EnableAcceptEncodingBrotli
field. If one or both of these fields istrue
and the viewer request includes theAccept-Encoding
header, then CloudFront does the following:Normalizes the value of the viewer’s
Accept-Encoding
headerIncludes the normalized header in the cache key
Includes the normalized header in the request to the origin, if a request is necessary
For more information, see Compression support in the Amazon CloudFront Developer Guide.
If you set this value to
true
, and this cache behavior also has an origin request policy attached, do not include theAccept-Encoding
header in the origin request policy. CloudFront always includes theAccept-Encoding
header in origin requests when the value of this field istrue
, so including this header in an origin request policy has no effect.If both of these fields are
false
, then CloudFront treats theAccept-Encoding
header the same as any other HTTP header in the viewer request. By default, it’s not included in the cache key and it’s not included in origin requests. In this case, you can manually addAccept-Encoding
to the headers whitelist like any other HTTP header.EnableAcceptEncodingBrotli (boolean) –
A flag that can affect whether the
Accept-Encoding
HTTP header is included in the cache key and included in requests that CloudFront sends to the origin.This field is related to the
EnableAcceptEncodingGzip
field. If one or both of these fields istrue
and the viewer request includes theAccept-Encoding
header, then CloudFront does the following:Normalizes the value of the viewer’s
Accept-Encoding
headerIncludes the normalized header in the cache key
Includes the normalized header in the request to the origin, if a request is necessary
For more information, see Compression support in the Amazon CloudFront Developer Guide.
If you set this value to
true
, and this cache behavior also has an origin request policy attached, do not include theAccept-Encoding
header in the origin request policy. CloudFront always includes theAccept-Encoding
header in origin requests when the value of this field istrue
, so including this header in an origin request policy has no effect.If both of these fields are
false
, then CloudFront treats theAccept-Encoding
header the same as any other HTTP header in the viewer request. By default, it’s not included in the cache key and it’s not included in origin requests. In this case, you can manually addAccept-Encoding
to the headers whitelist like any other HTTP header.HeadersConfig (dict) – [REQUIRED]
An object that determines whether any HTTP headers (and if so, which headers) are included in the cache key and in requests that CloudFront sends to the origin.
HeaderBehavior (string) – [REQUIRED]
Determines whether any HTTP headers are included in the cache key and in requests that CloudFront sends to the origin. Valid values are:
none
– No HTTP headers are included in the cache key or in requests that CloudFront sends to the origin. Even when this field is set tonone
, any headers that are listed in anOriginRequestPolicy
are included in origin requests.whitelist
– Only the HTTP headers that are listed in theHeaders
type are included in the cache key and in requests that CloudFront sends to the origin.
Headers (dict) –
Contains a list of HTTP header names.
Quantity (integer) – [REQUIRED]
The number of header names in the
Items
list.Items (list) –
A list of HTTP header names.
(string) –
CookiesConfig (dict) – [REQUIRED]
An object that determines whether any cookies in viewer requests (and if so, which cookies) are included in the cache key and in requests that CloudFront sends to the origin.
CookieBehavior (string) – [REQUIRED]
Determines whether any cookies in viewer requests are included in the cache key and in requests that CloudFront sends to the origin. Valid values are:
none
– No cookies in viewer requests are included in the cache key or in requests that CloudFront sends to the origin. Even when this field is set tonone
, any cookies that are listed in anOriginRequestPolicy
are included in origin requests.whitelist
– Only the cookies in viewer requests that are listed in theCookieNames
type are included in the cache key and in requests that CloudFront sends to the origin.allExcept
– All cookies in viewer requests are included in the cache key and in requests that CloudFront sends to the origin, except for those that are listed in theCookieNames
type, which are not included.all
– All cookies in viewer requests are included in the cache key and in requests that CloudFront sends to the origin.
Cookies (dict) –
Contains a list of cookie names.
Quantity (integer) – [REQUIRED]
The number of cookie names in the
Items
list.Items (list) –
A list of cookie names.
(string) –
QueryStringsConfig (dict) – [REQUIRED]
An object that determines whether any URL query strings in viewer requests (and if so, which query strings) are included in the cache key and in requests that CloudFront sends to the origin.
QueryStringBehavior (string) – [REQUIRED]
Determines whether any URL query strings in viewer requests are included in the cache key and in requests that CloudFront sends to the origin. Valid values are:
none
– No query strings in viewer requests are included in the cache key or in requests that CloudFront sends to the origin. Even when this field is set tonone
, any query strings that are listed in anOriginRequestPolicy
are included in origin requests.whitelist
– Only the query strings in viewer requests that are listed in theQueryStringNames
type are included in the cache key and in requests that CloudFront sends to the origin.allExcept
– All query strings in viewer requests are included in the cache key and in requests that CloudFront sends to the origin, except those that are listed in theQueryStringNames
type, which are not included.all
– All query strings in viewer requests are included in the cache key and in requests that CloudFront sends to the origin.
QueryStrings (dict) –
Contains the specific query strings in viewer requests that either are or are not included in the cache key and in requests that CloudFront sends to the origin. The behavior depends on whether the
QueryStringBehavior
field in theCachePolicyQueryStringsConfig
type is set towhitelist
(the listed query strings are included) orallExcept
(the listed query strings are not included, but all other query strings are).Quantity (integer) – [REQUIRED]
The number of query string names in the
Items
list.Items (list) –
A list of query string names.
(string) –
- Return type:
dict
- Returns:
Response Syntax
{ 'CachePolicy': { 'Id': 'string', 'LastModifiedTime': datetime(2015, 1, 1), 'CachePolicyConfig': { 'Comment': 'string', 'Name': 'string', 'DefaultTTL': 123, 'MaxTTL': 123, 'MinTTL': 123, 'ParametersInCacheKeyAndForwardedToOrigin': { 'EnableAcceptEncodingGzip': True|False, 'EnableAcceptEncodingBrotli': True|False, 'HeadersConfig': { 'HeaderBehavior': 'none'|'whitelist', 'Headers': { 'Quantity': 123, 'Items': [ 'string', ] } }, 'CookiesConfig': { 'CookieBehavior': 'none'|'whitelist'|'allExcept'|'all', 'Cookies': { 'Quantity': 123, 'Items': [ 'string', ] } }, 'QueryStringsConfig': { 'QueryStringBehavior': 'none'|'whitelist'|'allExcept'|'all', 'QueryStrings': { 'Quantity': 123, 'Items': [ 'string', ] } } } } }, 'Location': 'string', 'ETag': 'string' }
Response Structure
(dict) –
CachePolicy (dict) –
A cache policy.
Id (string) –
The unique identifier for the cache policy.
LastModifiedTime (datetime) –
The date and time when the cache policy was last modified.
CachePolicyConfig (dict) –
The cache policy configuration.
Comment (string) –
A comment to describe the cache policy. The comment cannot be longer than 128 characters.
Name (string) –
A unique name to identify the cache policy.
DefaultTTL (integer) –
The default amount of time, in seconds, that you want objects to stay in the CloudFront cache before CloudFront sends another request to the origin to see if the object has been updated. CloudFront uses this value as the object’s time to live (TTL) only when the origin does not send
Cache-Control
orExpires
headers with the object. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.The default value for this field is 86400 seconds (one day). If the value of
MinTTL
is more than 86400 seconds, then the default value for this field is the same as the value ofMinTTL
.MaxTTL (integer) –
The maximum amount of time, in seconds, that objects stay in the CloudFront cache before CloudFront sends another request to the origin to see if the object has been updated. CloudFront uses this value only when the origin sends
Cache-Control
orExpires
headers with the object. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.The default value for this field is 31536000 seconds (one year). If the value of
MinTTL
orDefaultTTL
is more than 31536000 seconds, then the default value for this field is the same as the value ofDefaultTTL
.MinTTL (integer) –
The minimum amount of time, in seconds, that you want objects to stay in the CloudFront cache before CloudFront sends another request to the origin to see if the object has been updated. For more information, see Managing How Long Content Stays in an Edge Cache (Expiration) in the Amazon CloudFront Developer Guide.
ParametersInCacheKeyAndForwardedToOrigin (dict) –
The HTTP headers, cookies, and URL query strings to include in the cache key. The values included in the cache key are also included in requests that CloudFront sends to the origin.
EnableAcceptEncodingGzip (boolean) –
A flag that can affect whether the
Accept-Encoding
HTTP header is included in the cache key and included in requests that CloudFront sends to the origin.This field is related to the
EnableAcceptEncodingBrotli
field. If one or both of these fields istrue
and the viewer request includes theAccept-Encoding
header, then CloudFront does the following:Normalizes the value of the viewer’s
Accept-Encoding
headerIncludes the normalized header in the cache key
Includes the normalized header in the request to the origin, if a request is necessary
For more information, see Compression support in the Amazon CloudFront Developer Guide.
If you set this value to
true
, and this cache behavior also has an origin request policy attached, do not include theAccept-Encoding
header in the origin request policy. CloudFront always includes theAccept-Encoding
header in origin requests when the value of this field istrue
, so including this header in an origin request policy has no effect.If both of these fields are
false
, then CloudFront treats theAccept-Encoding
header the same as any other HTTP header in the viewer request. By default, it’s not included in the cache key and it’s not included in origin requests. In this case, you can manually addAccept-Encoding
to the headers whitelist like any other HTTP header.EnableAcceptEncodingBrotli (boolean) –
A flag that can affect whether the
Accept-Encoding
HTTP header is included in the cache key and included in requests that CloudFront sends to the origin.This field is related to the
EnableAcceptEncodingGzip
field. If one or both of these fields istrue
and the viewer request includes theAccept-Encoding
header, then CloudFront does the following:Normalizes the value of the viewer’s
Accept-Encoding
headerIncludes the normalized header in the cache key
Includes the normalized header in the request to the origin, if a request is necessary
For more information, see Compression support in the Amazon CloudFront Developer Guide.
If you set this value to
true
, and this cache behavior also has an origin request policy attached, do not include theAccept-Encoding
header in the origin request policy. CloudFront always includes theAccept-Encoding
header in origin requests when the value of this field istrue
, so including this header in an origin request policy has no effect.If both of these fields are
false
, then CloudFront treats theAccept-Encoding
header the same as any other HTTP header in the viewer request. By default, it’s not included in the cache key and it’s not included in origin requests. In this case, you can manually addAccept-Encoding
to the headers whitelist like any other HTTP header.HeadersConfig (dict) –
An object that determines whether any HTTP headers (and if so, which headers) are included in the cache key and in requests that CloudFront sends to the origin.
HeaderBehavior (string) –
Determines whether any HTTP headers are included in the cache key and in requests that CloudFront sends to the origin. Valid values are:
none
– No HTTP headers are included in the cache key or in requests that CloudFront sends to the origin. Even when this field is set tonone
, any headers that are listed in anOriginRequestPolicy
are included in origin requests.whitelist
– Only the HTTP headers that are listed in theHeaders
type are included in the cache key and in requests that CloudFront sends to the origin.
Headers (dict) –
Contains a list of HTTP header names.
Quantity (integer) –
The number of header names in the
Items
list.Items (list) –
A list of HTTP header names.
(string) –
CookiesConfig (dict) –
An object that determines whether any cookies in viewer requests (and if so, which cookies) are included in the cache key and in requests that CloudFront sends to the origin.
CookieBehavior (string) –
Determines whether any cookies in viewer requests are included in the cache key and in requests that CloudFront sends to the origin. Valid values are:
none
– No cookies in viewer requests are included in the cache key or in requests that CloudFront sends to the origin. Even when this field is set tonone
, any cookies that are listed in anOriginRequestPolicy
are included in origin requests.whitelist
– Only the cookies in viewer requests that are listed in theCookieNames
type are included in the cache key and in requests that CloudFront sends to the origin.allExcept
– All cookies in viewer requests are included in the cache key and in requests that CloudFront sends to the origin, except for those that are listed in theCookieNames
type, which are not included.all
– All cookies in viewer requests are included in the cache key and in requests that CloudFront sends to the origin.
Cookies (dict) –
Contains a list of cookie names.
Quantity (integer) –
The number of cookie names in the
Items
list.Items (list) –
A list of cookie names.
(string) –
QueryStringsConfig (dict) –
An object that determines whether any URL query strings in viewer requests (and if so, which query strings) are included in the cache key and in requests that CloudFront sends to the origin.
QueryStringBehavior (string) –
Determines whether any URL query strings in viewer requests are included in the cache key and in requests that CloudFront sends to the origin. Valid values are:
none
– No query strings in viewer requests are included in the cache key or in requests that CloudFront sends to the origin. Even when this field is set tonone
, any query strings that are listed in anOriginRequestPolicy
are included in origin requests.whitelist
– Only the query strings in viewer requests that are listed in theQueryStringNames
type are included in the cache key and in requests that CloudFront sends to the origin.allExcept
– All query strings in viewer requests are included in the cache key and in requests that CloudFront sends to the origin, except those that are listed in theQueryStringNames
type, which are not included.all
– All query strings in viewer requests are included in the cache key and in requests that CloudFront sends to the origin.
QueryStrings (dict) –
Contains the specific query strings in viewer requests that either are or are not included in the cache key and in requests that CloudFront sends to the origin. The behavior depends on whether the
QueryStringBehavior
field in theCachePolicyQueryStringsConfig
type is set towhitelist
(the listed query strings are included) orallExcept
(the listed query strings are not included, but all other query strings are).Quantity (integer) –
The number of query string names in the
Items
list.Items (list) –
A list of query string names.
(string) –
Location (string) –
The fully qualified URI of the cache policy just created.
ETag (string) –
The current version of the cache policy.
Exceptions
CloudFront.Client.exceptions.AccessDenied
CloudFront.Client.exceptions.InconsistentQuantities
CloudFront.Client.exceptions.InvalidArgument
CloudFront.Client.exceptions.CachePolicyAlreadyExists
CloudFront.Client.exceptions.TooManyCachePolicies
CloudFront.Client.exceptions.TooManyHeadersInCachePolicy
CloudFront.Client.exceptions.TooManyCookiesInCachePolicy
CloudFront.Client.exceptions.TooManyQueryStringsInCachePolicy