#[non_exhaustive]pub struct OriginRequestPolicyConfig { /* private fields */ }
Expand description
An origin request policy configuration.
This configuration determines the values that CloudFront includes in requests that it sends to the origin. Each request that CloudFront sends to the origin includes the following:
-
The request body and the URL path (without the domain name) from the viewer request.
-
The headers that CloudFront automatically includes in every origin request, including
Host
,User-Agent
, andX-Amz-Cf-Id
. -
All HTTP headers, cookies, and URL query strings that are specified in the cache policy or the origin request policy. These can include items from the viewer request and, in the case of headers, additional ones that are added by CloudFront.
CloudFront sends a request when it can’t find an object in its cache that matches the request. If you want to send values to the origin and also include them in the cache key, use CachePolicy
.
Implementations
sourceimpl OriginRequestPolicyConfig
impl OriginRequestPolicyConfig
sourcepub fn comment(&self) -> Option<&str>
pub fn comment(&self) -> Option<&str>
A comment to describe the origin request policy. The comment cannot be longer than 128 characters.
sourcepub fn headers_config(&self) -> Option<&OriginRequestPolicyHeadersConfig>
pub fn headers_config(&self) -> Option<&OriginRequestPolicyHeadersConfig>
The HTTP headers to include in origin requests. These can include headers from viewer requests and additional headers added by CloudFront.
The cookies from viewer requests to include in origin requests.
sourcepub fn query_strings_config(
&self
) -> Option<&OriginRequestPolicyQueryStringsConfig>
pub fn query_strings_config(
&self
) -> Option<&OriginRequestPolicyQueryStringsConfig>
The URL query strings from viewer requests to include in origin requests.
sourceimpl OriginRequestPolicyConfig
impl OriginRequestPolicyConfig
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture OriginRequestPolicyConfig
.
Trait Implementations
sourceimpl Clone for OriginRequestPolicyConfig
impl Clone for OriginRequestPolicyConfig
sourcefn clone(&self) -> OriginRequestPolicyConfig
fn clone(&self) -> OriginRequestPolicyConfig
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more