#[non_exhaustive]pub struct ResponseHeadersPolicyStrictTransportSecurity {
pub override: bool,
pub include_subdomains: Option<bool>,
pub preload: Option<bool>,
pub access_control_max_age_sec: i32,
}
Expand description
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.
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 Strict-Transport-Security
HTTP response header received from the origin with the one specified in this response headers policy.
include_subdomains: Option<bool>
A Boolean that determines whether CloudFront includes the includeSubDomains
directive in the Strict-Transport-Security
HTTP response header.
preload: Option<bool>
A Boolean that determines whether CloudFront includes the preload
directive in the Strict-Transport-Security
HTTP response header.
access_control_max_age_sec: i32
A number that CloudFront uses as the value for the max-age
directive in the Strict-Transport-Security
HTTP response header.
Implementations§
source§impl ResponseHeadersPolicyStrictTransportSecurity
impl ResponseHeadersPolicyStrictTransportSecurity
sourcepub fn override(&self) -> bool
pub fn override(&self) -> bool
A Boolean that determines whether CloudFront overrides the Strict-Transport-Security
HTTP response header received from the origin with the one specified in this response headers policy.
sourcepub fn include_subdomains(&self) -> Option<bool>
pub fn include_subdomains(&self) -> Option<bool>
A Boolean that determines whether CloudFront includes the includeSubDomains
directive in the Strict-Transport-Security
HTTP response header.
sourcepub fn preload(&self) -> Option<bool>
pub fn preload(&self) -> Option<bool>
A Boolean that determines whether CloudFront includes the preload
directive in the Strict-Transport-Security
HTTP response header.
sourcepub fn access_control_max_age_sec(&self) -> i32
pub fn access_control_max_age_sec(&self) -> i32
A number that CloudFront uses as the value for the max-age
directive in the Strict-Transport-Security
HTTP response header.
source§impl ResponseHeadersPolicyStrictTransportSecurity
impl ResponseHeadersPolicyStrictTransportSecurity
sourcepub fn builder() -> ResponseHeadersPolicyStrictTransportSecurityBuilder
pub fn builder() -> ResponseHeadersPolicyStrictTransportSecurityBuilder
Creates a new builder-style object to manufacture ResponseHeadersPolicyStrictTransportSecurity
.
Trait Implementations§
source§impl Clone for ResponseHeadersPolicyStrictTransportSecurity
impl Clone for ResponseHeadersPolicyStrictTransportSecurity
source§fn clone(&self) -> ResponseHeadersPolicyStrictTransportSecurity
fn clone(&self) -> ResponseHeadersPolicyStrictTransportSecurity
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for ResponseHeadersPolicyStrictTransportSecurity
impl PartialEq for ResponseHeadersPolicyStrictTransportSecurity
source§fn eq(&self, other: &ResponseHeadersPolicyStrictTransportSecurity) -> bool
fn eq(&self, other: &ResponseHeadersPolicyStrictTransportSecurity) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ResponseHeadersPolicyStrictTransportSecurity
Auto Trait Implementations§
impl Freeze for ResponseHeadersPolicyStrictTransportSecurity
impl RefUnwindSafe for ResponseHeadersPolicyStrictTransportSecurity
impl Send for ResponseHeadersPolicyStrictTransportSecurity
impl Sync for ResponseHeadersPolicyStrictTransportSecurity
impl Unpin for ResponseHeadersPolicyStrictTransportSecurity
impl UnwindSafe for ResponseHeadersPolicyStrictTransportSecurity
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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