Struct aws_sdk_elasticloadbalancingv2::types::builders::MutualAuthenticationAttributesBuilder
source · #[non_exhaustive]pub struct MutualAuthenticationAttributesBuilder { /* private fields */ }
Expand description
A builder for MutualAuthenticationAttributes
.
Implementations§
source§impl MutualAuthenticationAttributesBuilder
impl MutualAuthenticationAttributesBuilder
sourcepub fn mode(self, input: impl Into<String>) -> Self
pub fn mode(self, input: impl Into<String>) -> Self
The client certificate handling method. Options are off
, passthrough
or verify
. The default value is off
.
sourcepub fn set_mode(self, input: Option<String>) -> Self
pub fn set_mode(self, input: Option<String>) -> Self
The client certificate handling method. Options are off
, passthrough
or verify
. The default value is off
.
sourcepub fn get_mode(&self) -> &Option<String>
pub fn get_mode(&self) -> &Option<String>
The client certificate handling method. Options are off
, passthrough
or verify
. The default value is off
.
sourcepub fn trust_store_arn(self, input: impl Into<String>) -> Self
pub fn trust_store_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the trust store.
sourcepub fn set_trust_store_arn(self, input: Option<String>) -> Self
pub fn set_trust_store_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the trust store.
sourcepub fn get_trust_store_arn(&self) -> &Option<String>
pub fn get_trust_store_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of the trust store.
sourcepub fn ignore_client_certificate_expiry(self, input: bool) -> Self
pub fn ignore_client_certificate_expiry(self, input: bool) -> Self
Indicates whether expired client certificates are ignored.
sourcepub fn set_ignore_client_certificate_expiry(self, input: Option<bool>) -> Self
pub fn set_ignore_client_certificate_expiry(self, input: Option<bool>) -> Self
Indicates whether expired client certificates are ignored.
sourcepub fn get_ignore_client_certificate_expiry(&self) -> &Option<bool>
pub fn get_ignore_client_certificate_expiry(&self) -> &Option<bool>
Indicates whether expired client certificates are ignored.
sourcepub fn build(self) -> MutualAuthenticationAttributes
pub fn build(self) -> MutualAuthenticationAttributes
Consumes the builder and constructs a MutualAuthenticationAttributes
.
Trait Implementations§
source§impl Clone for MutualAuthenticationAttributesBuilder
impl Clone for MutualAuthenticationAttributesBuilder
source§fn clone(&self) -> MutualAuthenticationAttributesBuilder
fn clone(&self) -> MutualAuthenticationAttributesBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for MutualAuthenticationAttributesBuilder
impl Default for MutualAuthenticationAttributesBuilder
source§fn default() -> MutualAuthenticationAttributesBuilder
fn default() -> MutualAuthenticationAttributesBuilder
source§impl PartialEq for MutualAuthenticationAttributesBuilder
impl PartialEq for MutualAuthenticationAttributesBuilder
source§fn eq(&self, other: &MutualAuthenticationAttributesBuilder) -> bool
fn eq(&self, other: &MutualAuthenticationAttributesBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.