#[non_exhaustive]pub struct ResponseHeadersPolicyXssProtection {
pub override: bool,
pub protection: bool,
pub mode_block: Option<bool>,
pub report_uri: Option<String>,
}
Expand description
Determines whether CloudFront includes the X-XSS-Protection
HTTP response header and the header's value.
For more information about the X-XSS-Protection
HTTP response header, see X-XSS-Protection in the MDN Web Docs.
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.override: bool
A Boolean that determines whether CloudFront overrides the X-XSS-Protection
HTTP response header received from the origin with the one specified in this response headers policy.
protection: bool
A Boolean that determines the value of the X-XSS-Protection
HTTP response header. When this setting is true
, the value of the X-XSS-Protection
header is 1
. When this setting is false
, the value of the X-XSS-Protection
header is 0
.
For more information about these settings, see X-XSS-Protection in the MDN Web Docs.
mode_block: Option<bool>
A Boolean that determines whether CloudFront includes the mode=block
directive in the X-XSS-Protection
header.
For more information about this directive, see X-XSS-Protection in the MDN Web Docs.
report_uri: Option<String>
A reporting URI, which CloudFront uses as the value of the report
directive in the X-XSS-Protection
header.
You cannot specify a ReportUri
when ModeBlock
is true
.
For more information about using a reporting URL, see X-XSS-Protection in the MDN Web Docs.
Implementations§
source§impl ResponseHeadersPolicyXssProtection
impl ResponseHeadersPolicyXssProtection
sourcepub fn override(&self) -> bool
pub fn override(&self) -> bool
A Boolean that determines whether CloudFront overrides the X-XSS-Protection
HTTP response header received from the origin with the one specified in this response headers policy.
sourcepub fn protection(&self) -> bool
pub fn protection(&self) -> bool
A Boolean that determines the value of the X-XSS-Protection
HTTP response header. When this setting is true
, the value of the X-XSS-Protection
header is 1
. When this setting is false
, the value of the X-XSS-Protection
header is 0
.
For more information about these settings, see X-XSS-Protection in the MDN Web Docs.
sourcepub fn mode_block(&self) -> Option<bool>
pub fn mode_block(&self) -> Option<bool>
A Boolean that determines whether CloudFront includes the mode=block
directive in the X-XSS-Protection
header.
For more information about this directive, see X-XSS-Protection in the MDN Web Docs.
sourcepub fn report_uri(&self) -> Option<&str>
pub fn report_uri(&self) -> Option<&str>
A reporting URI, which CloudFront uses as the value of the report
directive in the X-XSS-Protection
header.
You cannot specify a ReportUri
when ModeBlock
is true
.
For more information about using a reporting URL, see X-XSS-Protection in the MDN Web Docs.
source§impl ResponseHeadersPolicyXssProtection
impl ResponseHeadersPolicyXssProtection
sourcepub fn builder() -> ResponseHeadersPolicyXssProtectionBuilder
pub fn builder() -> ResponseHeadersPolicyXssProtectionBuilder
Creates a new builder-style object to manufacture ResponseHeadersPolicyXssProtection
.
Trait Implementations§
source§impl Clone for ResponseHeadersPolicyXssProtection
impl Clone for ResponseHeadersPolicyXssProtection
source§fn clone(&self) -> ResponseHeadersPolicyXssProtection
fn clone(&self) -> ResponseHeadersPolicyXssProtection
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for ResponseHeadersPolicyXssProtection
impl PartialEq for ResponseHeadersPolicyXssProtection
source§fn eq(&self, other: &ResponseHeadersPolicyXssProtection) -> bool
fn eq(&self, other: &ResponseHeadersPolicyXssProtection) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ResponseHeadersPolicyXssProtection
Auto Trait Implementations§
impl Freeze for ResponseHeadersPolicyXssProtection
impl RefUnwindSafe for ResponseHeadersPolicyXssProtection
impl Send for ResponseHeadersPolicyXssProtection
impl Sync for ResponseHeadersPolicyXssProtection
impl Unpin for ResponseHeadersPolicyXssProtection
impl UnwindSafe for ResponseHeadersPolicyXssProtection
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