#[non_exhaustive]pub struct OriginRequestPolicyConfig {
pub comment: Option<String>,
pub name: String,
pub headers_config: Option<OriginRequestPolicyHeadersConfig>,
pub cookies_config: Option<OriginRequestPolicyCookiesConfig>,
pub query_strings_config: Option<OriginRequestPolicyQueryStringsConfig>,
}
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
.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.comment: Option<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.
headers_config: 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.
query_strings_config: Option<OriginRequestPolicyQueryStringsConfig>
The URL query strings from viewer requests to include in origin requests.
Implementations§
source§impl 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.
source§impl OriginRequestPolicyConfig
impl OriginRequestPolicyConfig
sourcepub fn builder() -> OriginRequestPolicyConfigBuilder
pub fn builder() -> OriginRequestPolicyConfigBuilder
Creates a new builder-style object to manufacture OriginRequestPolicyConfig
.
Trait Implementations§
source§impl Clone for OriginRequestPolicyConfig
impl Clone for OriginRequestPolicyConfig
source§fn clone(&self) -> OriginRequestPolicyConfig
fn clone(&self) -> OriginRequestPolicyConfig
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for OriginRequestPolicyConfig
impl Debug for OriginRequestPolicyConfig
source§impl PartialEq for OriginRequestPolicyConfig
impl PartialEq for OriginRequestPolicyConfig
source§fn eq(&self, other: &OriginRequestPolicyConfig) -> bool
fn eq(&self, other: &OriginRequestPolicyConfig) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for OriginRequestPolicyConfig
Auto Trait Implementations§
impl Freeze for OriginRequestPolicyConfig
impl RefUnwindSafe for OriginRequestPolicyConfig
impl Send for OriginRequestPolicyConfig
impl Sync for OriginRequestPolicyConfig
impl Unpin for OriginRequestPolicyConfig
impl UnwindSafe for OriginRequestPolicyConfig
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more