#[non_exhaustive]pub struct ResponseHeadersPolicyXssProtection { /* private fields */ }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.
Implementations
sourceimpl ResponseHeadersPolicyXssProtection
impl ResponseHeadersPolicyXssProtection
sourcepub fn override(&self) -> Option<bool>
pub fn override(&self) -> Option<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) -> Option<bool>
pub fn protection(&self) -> Option<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.
sourceimpl ResponseHeadersPolicyXssProtection
impl ResponseHeadersPolicyXssProtection
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ResponseHeadersPolicyXssProtection.
Trait Implementations
sourceimpl Clone for ResponseHeadersPolicyXssProtection
impl Clone for ResponseHeadersPolicyXssProtection
sourcefn clone(&self) -> ResponseHeadersPolicyXssProtection
fn clone(&self) -> ResponseHeadersPolicyXssProtection
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl PartialEq<ResponseHeadersPolicyXssProtection> for ResponseHeadersPolicyXssProtection
impl PartialEq<ResponseHeadersPolicyXssProtection> for ResponseHeadersPolicyXssProtection
sourcefn eq(&self, other: &ResponseHeadersPolicyXssProtection) -> bool
fn eq(&self, other: &ResponseHeadersPolicyXssProtection) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
impl StructuralPartialEq for ResponseHeadersPolicyXssProtection
Auto Trait Implementations
impl RefUnwindSafe for ResponseHeadersPolicyXssProtection
impl Send for ResponseHeadersPolicyXssProtection
impl Sync for ResponseHeadersPolicyXssProtection
impl Unpin for ResponseHeadersPolicyXssProtection
impl UnwindSafe for ResponseHeadersPolicyXssProtection
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more