#[non_exhaustive]pub struct ResponseHeadersPolicySecurityHeadersConfig { /* private fields */ }Expand description
A configuration for a set of security-related HTTP response headers. CloudFront adds these headers to HTTP responses that it sends for requests that match a cache behavior associated with this response headers policy.
Implementations
sourceimpl ResponseHeadersPolicySecurityHeadersConfig
impl ResponseHeadersPolicySecurityHeadersConfig
sourcepub fn xss_protection(&self) -> Option<&ResponseHeadersPolicyXssProtection>
pub fn xss_protection(&self) -> Option<&ResponseHeadersPolicyXssProtection>
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.
sourcepub fn frame_options(&self) -> Option<&ResponseHeadersPolicyFrameOptions>
pub fn frame_options(&self) -> Option<&ResponseHeadersPolicyFrameOptions>
Determines whether CloudFront includes the X-Frame-Options HTTP response header and the header’s value.
For more information about the X-Frame-Options HTTP response header, see X-Frame-Options in the MDN Web Docs.
sourcepub fn referrer_policy(&self) -> Option<&ResponseHeadersPolicyReferrerPolicy>
pub fn referrer_policy(&self) -> Option<&ResponseHeadersPolicyReferrerPolicy>
Determines whether CloudFront includes the Referrer-Policy HTTP response header and the header’s value.
For more information about the Referrer-Policy HTTP response header, see Referrer-Policy in the MDN Web Docs.
sourcepub fn content_security_policy(
&self
) -> Option<&ResponseHeadersPolicyContentSecurityPolicy>
pub fn content_security_policy(
&self
) -> Option<&ResponseHeadersPolicyContentSecurityPolicy>
The policy directives and their values that CloudFront includes as values for the Content-Security-Policy HTTP response header.
For more information about the Content-Security-Policy HTTP response header, see Content-Security-Policy in the MDN Web Docs.
sourcepub fn content_type_options(
&self
) -> Option<&ResponseHeadersPolicyContentTypeOptions>
pub fn content_type_options(
&self
) -> Option<&ResponseHeadersPolicyContentTypeOptions>
Determines whether CloudFront includes the X-Content-Type-Options HTTP response header with its value set to nosniff.
For more information about the X-Content-Type-Options HTTP response header, see X-Content-Type-Options in the MDN Web Docs.
sourcepub fn strict_transport_security(
&self
) -> Option<&ResponseHeadersPolicyStrictTransportSecurity>
pub fn strict_transport_security(
&self
) -> Option<&ResponseHeadersPolicyStrictTransportSecurity>
Determines whether CloudFront includes the Strict-Transport-Security HTTP response header and the header’s value.
For more information about the Strict-Transport-Security HTTP response header, see Strict-Transport-Security in the MDN Web Docs.
sourceimpl ResponseHeadersPolicySecurityHeadersConfig
impl ResponseHeadersPolicySecurityHeadersConfig
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ResponseHeadersPolicySecurityHeadersConfig.
Trait Implementations
sourceimpl Clone for ResponseHeadersPolicySecurityHeadersConfig
impl Clone for ResponseHeadersPolicySecurityHeadersConfig
sourcefn clone(&self) -> ResponseHeadersPolicySecurityHeadersConfig
fn clone(&self) -> ResponseHeadersPolicySecurityHeadersConfig
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<ResponseHeadersPolicySecurityHeadersConfig> for ResponseHeadersPolicySecurityHeadersConfig
impl PartialEq<ResponseHeadersPolicySecurityHeadersConfig> for ResponseHeadersPolicySecurityHeadersConfig
sourcefn eq(&self, other: &ResponseHeadersPolicySecurityHeadersConfig) -> bool
fn eq(&self, other: &ResponseHeadersPolicySecurityHeadersConfig) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
impl StructuralPartialEq for ResponseHeadersPolicySecurityHeadersConfig
Auto Trait Implementations
impl RefUnwindSafe for ResponseHeadersPolicySecurityHeadersConfig
impl Send for ResponseHeadersPolicySecurityHeadersConfig
impl Sync for ResponseHeadersPolicySecurityHeadersConfig
impl Unpin for ResponseHeadersPolicySecurityHeadersConfig
impl UnwindSafe for ResponseHeadersPolicySecurityHeadersConfig
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