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 ==
.impl StructuralPartialEq for MutualAuthenticationAttributesBuilder
Auto Trait Implementations§
impl Freeze for MutualAuthenticationAttributesBuilder
impl RefUnwindSafe for MutualAuthenticationAttributesBuilder
impl Send for MutualAuthenticationAttributesBuilder
impl Sync for MutualAuthenticationAttributesBuilder
impl Unpin for MutualAuthenticationAttributesBuilder
impl UnwindSafe for MutualAuthenticationAttributesBuilder
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> 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