Struct aws_sdk_cloudfront::types::OriginRequestPolicy
source · #[non_exhaustive]pub struct OriginRequestPolicy {
pub id: String,
pub last_modified_time: DateTime,
pub origin_request_policy_config: Option<OriginRequestPolicyConfig>,
}
Expand description
An origin request policy.
When it's attached to a cache behavior, the origin request policy 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.id: String
The unique identifier for the origin request policy.
last_modified_time: DateTime
The date and time when the origin request policy was last modified.
origin_request_policy_config: Option<OriginRequestPolicyConfig>
The origin request policy configuration.
Implementations§
source§impl OriginRequestPolicy
impl OriginRequestPolicy
sourcepub fn last_modified_time(&self) -> &DateTime
pub fn last_modified_time(&self) -> &DateTime
The date and time when the origin request policy was last modified.
sourcepub fn origin_request_policy_config(&self) -> Option<&OriginRequestPolicyConfig>
pub fn origin_request_policy_config(&self) -> Option<&OriginRequestPolicyConfig>
The origin request policy configuration.
source§impl OriginRequestPolicy
impl OriginRequestPolicy
sourcepub fn builder() -> OriginRequestPolicyBuilder
pub fn builder() -> OriginRequestPolicyBuilder
Creates a new builder-style object to manufacture OriginRequestPolicy
.
Trait Implementations§
source§impl Clone for OriginRequestPolicy
impl Clone for OriginRequestPolicy
source§fn clone(&self) -> OriginRequestPolicy
fn clone(&self) -> OriginRequestPolicy
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for OriginRequestPolicy
impl Debug for OriginRequestPolicy
source§impl PartialEq for OriginRequestPolicy
impl PartialEq for OriginRequestPolicy
source§fn eq(&self, other: &OriginRequestPolicy) -> bool
fn eq(&self, other: &OriginRequestPolicy) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for OriginRequestPolicy
Auto Trait Implementations§
impl Freeze for OriginRequestPolicy
impl RefUnwindSafe for OriginRequestPolicy
impl Send for OriginRequestPolicy
impl Sync for OriginRequestPolicy
impl Unpin for OriginRequestPolicy
impl UnwindSafe for OriginRequestPolicy
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