#[non_exhaustive]pub struct ParametersInCacheKeyAndForwardedToOrigin { /* private fields */ }
Expand description
This object determines 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 headers, cookies, and query strings that are included in the cache key are automatically 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
.
Implementations§
source§impl ParametersInCacheKeyAndForwardedToOrigin
impl ParametersInCacheKeyAndForwardedToOrigin
sourcepub fn enable_accept_encoding_gzip(&self) -> Option<bool>
pub fn enable_accept_encoding_gzip(&self) -> Option<bool>
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 is true
and the viewer request includes the Accept-Encoding
header, then CloudFront does the following:
-
Normalizes the value of the viewer’s
Accept-Encoding
header -
Includes 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 the Accept-Encoding
header in the origin request policy. CloudFront always includes the Accept-Encoding
header in origin requests when the value of this field is true
, so including this header in an origin request policy has no effect.
If both of these fields are false
, then CloudFront treats the Accept-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 add Accept-Encoding
to the headers whitelist like any other HTTP header.
sourcepub fn enable_accept_encoding_brotli(&self) -> Option<bool>
pub fn enable_accept_encoding_brotli(&self) -> Option<bool>
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 is true
and the viewer request includes the Accept-Encoding
header, then CloudFront does the following:
-
Normalizes the value of the viewer’s
Accept-Encoding
header -
Includes 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 the Accept-Encoding
header in the origin request policy. CloudFront always includes the Accept-Encoding
header in origin requests when the value of this field is true
, so including this header in an origin request policy has no effect.
If both of these fields are false
, then CloudFront treats the Accept-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 add Accept-Encoding
to the headers whitelist like any other HTTP header.
sourcepub fn headers_config(&self) -> Option<&CachePolicyHeadersConfig>
pub fn headers_config(&self) -> Option<&CachePolicyHeadersConfig>
An object that determines whether any HTTP headers (and if so, which headers) are included in the cache key and automatically included in requests that CloudFront sends to the origin.
An object that determines whether any cookies in viewer requests (and if so, which cookies) are included in the cache key and automatically included in requests that CloudFront sends to the origin.
sourcepub fn query_strings_config(&self) -> Option<&CachePolicyQueryStringsConfig>
pub fn query_strings_config(&self) -> Option<&CachePolicyQueryStringsConfig>
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 automatically included in requests that CloudFront sends to the origin.
source§impl ParametersInCacheKeyAndForwardedToOrigin
impl ParametersInCacheKeyAndForwardedToOrigin
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ParametersInCacheKeyAndForwardedToOrigin
.
Examples found in repository?
9544 9545 9546 9547 9548 9549 9550 9551 9552 9553 9554 9555 9556 9557 9558 9559 9560 9561 9562 9563 9564 9565 9566 9567 9568 9569 9570 9571 9572 9573 9574 9575 9576 9577 9578 9579 9580 9581 9582 9583 9584 9585 9586 9587 9588 9589 9590 9591 9592 9593 9594 9595 9596 9597 9598 9599 9600 9601 9602 9603 9604 9605 9606 9607 9608 9609 9610 9611 9612 9613 9614 9615 9616 9617 9618
pub fn deser_structure_crate_model_parameters_in_cache_key_and_forwarded_to_origin(
decoder: &mut aws_smithy_xml::decode::ScopedDecoder,
) -> Result<
crate::model::ParametersInCacheKeyAndForwardedToOrigin,
aws_smithy_xml::decode::XmlDecodeError,
> {
#[allow(unused_mut)]
let mut builder = crate::model::ParametersInCacheKeyAndForwardedToOrigin::builder();
while let Some(mut tag) = decoder.next_tag() {
match tag.start_el() {
s if s.matches("EnableAcceptEncodingGzip") /* EnableAcceptEncodingGzip com.amazonaws.cloudfront#ParametersInCacheKeyAndForwardedToOrigin$EnableAcceptEncodingGzip */ => {
let var_361 =
Some(
{
<bool as aws_smithy_types::primitive::Parse>::parse_smithy_primitive(
aws_smithy_xml::decode::try_data(&mut tag)?.as_ref()
)
.map_err(|_|aws_smithy_xml::decode::XmlDecodeError::custom("expected (boolean: `com.amazonaws.cloudfront#boolean`)"))
}
?
)
;
builder = builder.set_enable_accept_encoding_gzip(var_361);
}
,
s if s.matches("EnableAcceptEncodingBrotli") /* EnableAcceptEncodingBrotli com.amazonaws.cloudfront#ParametersInCacheKeyAndForwardedToOrigin$EnableAcceptEncodingBrotli */ => {
let var_362 =
Some(
{
<bool as aws_smithy_types::primitive::Parse>::parse_smithy_primitive(
aws_smithy_xml::decode::try_data(&mut tag)?.as_ref()
)
.map_err(|_|aws_smithy_xml::decode::XmlDecodeError::custom("expected (boolean: `com.amazonaws.cloudfront#boolean`)"))
}
?
)
;
builder = builder.set_enable_accept_encoding_brotli(var_362);
}
,
s if s.matches("HeadersConfig") /* HeadersConfig com.amazonaws.cloudfront#ParametersInCacheKeyAndForwardedToOrigin$HeadersConfig */ => {
let var_363 =
Some(
crate::xml_deser::deser_structure_crate_model_cache_policy_headers_config(&mut tag)
?
)
;
builder = builder.set_headers_config(var_363);
}
,
s if s.matches("CookiesConfig") /* CookiesConfig com.amazonaws.cloudfront#ParametersInCacheKeyAndForwardedToOrigin$CookiesConfig */ => {
let var_364 =
Some(
crate::xml_deser::deser_structure_crate_model_cache_policy_cookies_config(&mut tag)
?
)
;
builder = builder.set_cookies_config(var_364);
}
,
s if s.matches("QueryStringsConfig") /* QueryStringsConfig com.amazonaws.cloudfront#ParametersInCacheKeyAndForwardedToOrigin$QueryStringsConfig */ => {
let var_365 =
Some(
crate::xml_deser::deser_structure_crate_model_cache_policy_query_strings_config(&mut tag)
?
)
;
builder = builder.set_query_strings_config(var_365);
}
,
_ => {}
}
}
Ok(builder.build())
}
Trait Implementations§
source§impl Clone for ParametersInCacheKeyAndForwardedToOrigin
impl Clone for ParametersInCacheKeyAndForwardedToOrigin
source§fn clone(&self) -> ParametersInCacheKeyAndForwardedToOrigin
fn clone(&self) -> ParametersInCacheKeyAndForwardedToOrigin
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more