#[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 ==
.