CloudFront.Client.
update_origin_request_policy
(**kwargs)¶Updates an origin request policy configuration.
When you update an origin request policy configuration, all the fields are updated with the values provided in the request. You cannot update some fields independent of others. To update an origin request policy configuration:
GetOriginRequestPolicyConfig
to get the current configuration.UpdateOriginRequestPolicy
by providing the entire origin request policy configuration, including the fields that you modified and those that you didn't.See also: AWS API Documentation
Request Syntax
response = client.update_origin_request_policy(
OriginRequestPolicyConfig={
'Comment': 'string',
'Name': 'string',
'HeadersConfig': {
'HeaderBehavior': 'none'|'whitelist'|'allViewer'|'allViewerAndWhitelistCloudFront'|'allExcept',
'Headers': {
'Quantity': 123,
'Items': [
'string',
]
}
},
'CookiesConfig': {
'CookieBehavior': 'none'|'whitelist'|'all'|'allExcept',
'Cookies': {
'Quantity': 123,
'Items': [
'string',
]
}
},
'QueryStringsConfig': {
'QueryStringBehavior': 'none'|'whitelist'|'all'|'allExcept',
'QueryStrings': {
'Quantity': 123,
'Items': [
'string',
]
}
}
},
Id='string',
IfMatch='string'
)
[REQUIRED]
An origin request policy configuration.
A comment to describe the origin request policy. The comment cannot be longer than 128 characters.
A unique name to identify the origin request policy.
The HTTP headers to include in origin requests. These can include headers from viewer requests and additional headers added by CloudFront.
Determines whether any HTTP headers are included in requests that CloudFront sends to the origin. Valid values are:
none
– No HTTP headers in viewer requests are included in requests that CloudFront sends to the origin. Even when this field is set to none
, any headers that are listed in a CachePolicy
are included in origin requests.whitelist
– Only the HTTP headers that are listed in the Headers
type are included in requests that CloudFront sends to the origin.allViewer
– All HTTP headers in viewer requests are included in requests that CloudFront sends to the origin.allViewerAndWhitelistCloudFront
– All HTTP headers in viewer requests and the additional CloudFront headers that are listed in the Headers
type are included in requests that CloudFront sends to the origin. The additional headers are added by CloudFront.allExcept
– All HTTP headers in viewer requests are included in requests that CloudFront sends to the origin, except for those listed in the Headers
type, which are not included.Contains a list of HTTP header names.
The number of header names in the Items
list.
A list of HTTP header names.
The cookies from viewer requests to include in origin requests.
Determines whether cookies in viewer requests are included in requests that CloudFront sends to the origin. Valid values are:
none
– No cookies in viewer requests are included in requests that CloudFront sends to the origin. Even when this field is set to none
, any cookies that are listed in a CachePolicy
are included in origin requests.whitelist
– Only the cookies in viewer requests that are listed in the CookieNames
type are included in requests that CloudFront sends to the origin.all
– All cookies in viewer requests are included in requests that CloudFront sends to the origin.allExcept
– All cookies in viewer requests are included in requests that CloudFront sends to the origin, except for those listed in the CookieNames
type, which are not included.Contains a list of cookie names.
The number of cookie names in the Items
list.
A list of cookie names.
The URL query strings from viewer requests to include in origin requests.
Determines whether any URL query strings in viewer requests are included in requests that CloudFront sends to the origin. Valid values are:
none
– No query strings in viewer requests are included in requests that CloudFront sends to the origin. Even when this field is set to none
, any query strings that are listed in a CachePolicy
are included in origin requests.whitelist
– Only the query strings in viewer requests that are listed in the QueryStringNames
type are included in requests that CloudFront sends to the origin.all
– All query strings in viewer requests are included in requests that CloudFront sends to the origin.allExcept
– All query strings in viewer requests are included in requests that CloudFront sends to the origin, except for those listed in the QueryStringNames
type, which are not included.Contains the specific query strings in viewer requests that either are or are not included in requests that CloudFront sends to the origin. The behavior depends on whether the QueryStringBehavior
field in the OriginRequestPolicyQueryStringsConfig
type is set to whitelist
(the listed query strings are included) or allExcept
(the listed query strings are not included, but all other query strings are).
The number of query string names in the Items
list.
A list of query string names.
[REQUIRED]
The unique identifier for the origin request policy that you are updating. The identifier is returned in a cache behavior's OriginRequestPolicyId
field in the response to GetDistributionConfig
.
ETag
field in the response to GetOriginRequestPolicyConfig
.dict
Response Syntax
{
'OriginRequestPolicy': {
'Id': 'string',
'LastModifiedTime': datetime(2015, 1, 1),
'OriginRequestPolicyConfig': {
'Comment': 'string',
'Name': 'string',
'HeadersConfig': {
'HeaderBehavior': 'none'|'whitelist'|'allViewer'|'allViewerAndWhitelistCloudFront'|'allExcept',
'Headers': {
'Quantity': 123,
'Items': [
'string',
]
}
},
'CookiesConfig': {
'CookieBehavior': 'none'|'whitelist'|'all'|'allExcept',
'Cookies': {
'Quantity': 123,
'Items': [
'string',
]
}
},
'QueryStringsConfig': {
'QueryStringBehavior': 'none'|'whitelist'|'all'|'allExcept',
'QueryStrings': {
'Quantity': 123,
'Items': [
'string',
]
}
}
}
},
'ETag': 'string'
}
Response Structure
(dict) --
OriginRequestPolicy (dict) --
An origin request policy.
Id (string) --
The unique identifier for the origin request policy.
LastModifiedTime (datetime) --
The date and time when the origin request policy was last modified.
OriginRequestPolicyConfig (dict) --
The origin request policy configuration.
Comment (string) --
A comment to describe the origin request policy. The comment cannot be longer than 128 characters.
Name (string) --
A unique name to identify the origin request policy.
HeadersConfig (dict) --
The HTTP headers to include in origin requests. These can include headers from viewer requests and additional headers added by CloudFront.
HeaderBehavior (string) --
Determines whether any HTTP headers are included in requests that CloudFront sends to the origin. Valid values are:
none
– No HTTP headers in viewer requests are included in requests that CloudFront sends to the origin. Even when this field is set to none
, any headers that are listed in a CachePolicy
are included in origin requests.whitelist
– Only the HTTP headers that are listed in the Headers
type are included in requests that CloudFront sends to the origin.allViewer
– All HTTP headers in viewer requests are included in requests that CloudFront sends to the origin.allViewerAndWhitelistCloudFront
– All HTTP headers in viewer requests and the additional CloudFront headers that are listed in the Headers
type are included in requests that CloudFront sends to the origin. The additional headers are added by CloudFront.allExcept
– All HTTP headers in viewer requests are included in requests that CloudFront sends to the origin, except for those listed in the Headers
type, which are not included.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.
CookiesConfig (dict) --
The cookies from viewer requests to include in origin requests.
CookieBehavior (string) --
Determines whether cookies in viewer requests are included in requests that CloudFront sends to the origin. Valid values are:
none
– No cookies in viewer requests are included in requests that CloudFront sends to the origin. Even when this field is set to none
, any cookies that are listed in a CachePolicy
are included in origin requests.whitelist
– Only the cookies in viewer requests that are listed in the CookieNames
type are included in requests that CloudFront sends to the origin.all
– All cookies in viewer requests are included in requests that CloudFront sends to the origin.allExcept
– All cookies in viewer requests are included in requests that CloudFront sends to the origin, except for those listed in the CookieNames
type, which are not included.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.
QueryStringsConfig (dict) --
The URL query strings from viewer requests to include in origin requests.
QueryStringBehavior (string) --
Determines whether any URL query strings in viewer requests are included in requests that CloudFront sends to the origin. Valid values are:
none
– No query strings in viewer requests are included in requests that CloudFront sends to the origin. Even when this field is set to none
, any query strings that are listed in a CachePolicy
are included in origin requests.whitelist
– Only the query strings in viewer requests that are listed in the QueryStringNames
type are included in requests that CloudFront sends to the origin.all
– All query strings in viewer requests are included in requests that CloudFront sends to the origin.allExcept
– All query strings in viewer requests are included in requests that CloudFront sends to the origin, except for those listed in the QueryStringNames
type, which are not included.QueryStrings (dict) --
Contains the specific query strings in viewer requests that either are or are not included in requests that CloudFront sends to the origin. The behavior depends on whether the QueryStringBehavior
field in the OriginRequestPolicyQueryStringsConfig
type is set to whitelist
(the listed query strings are included) or allExcept
(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.
ETag (string) --
The current version of the origin request policy.
Exceptions
CloudFront.Client.exceptions.AccessDenied
CloudFront.Client.exceptions.IllegalUpdate
CloudFront.Client.exceptions.InconsistentQuantities
CloudFront.Client.exceptions.InvalidArgument
CloudFront.Client.exceptions.InvalidIfMatchVersion
CloudFront.Client.exceptions.NoSuchOriginRequestPolicy
CloudFront.Client.exceptions.PreconditionFailed
CloudFront.Client.exceptions.OriginRequestPolicyAlreadyExists
CloudFront.Client.exceptions.TooManyHeadersInOriginRequestPolicy
CloudFront.Client.exceptions.TooManyCookiesInOriginRequestPolicy
CloudFront.Client.exceptions.TooManyQueryStringsInOriginRequestPolicy