Struct aws_sdk_securityhub::types::builders::AwsEc2ClientVpnEndpointAuthenticationOptionsDetailsBuilder
source · #[non_exhaustive]pub struct AwsEc2ClientVpnEndpointAuthenticationOptionsDetailsBuilder { /* private fields */ }Expand description
A builder for AwsEc2ClientVpnEndpointAuthenticationOptionsDetails.
Implementations§
source§impl AwsEc2ClientVpnEndpointAuthenticationOptionsDetailsBuilder
impl AwsEc2ClientVpnEndpointAuthenticationOptionsDetailsBuilder
sourcepub fn active_directory(
self,
input: AwsEc2ClientVpnEndpointAuthenticationOptionsActiveDirectoryDetails,
) -> Self
pub fn active_directory( self, input: AwsEc2ClientVpnEndpointAuthenticationOptionsActiveDirectoryDetails, ) -> Self
Information about the Active Directory, if applicable. With Active Directory authentication, clients are authenticated against existing Active Directory groups.
sourcepub fn set_active_directory(
self,
input: Option<AwsEc2ClientVpnEndpointAuthenticationOptionsActiveDirectoryDetails>,
) -> Self
pub fn set_active_directory( self, input: Option<AwsEc2ClientVpnEndpointAuthenticationOptionsActiveDirectoryDetails>, ) -> Self
Information about the Active Directory, if applicable. With Active Directory authentication, clients are authenticated against existing Active Directory groups.
sourcepub fn get_active_directory(
&self,
) -> &Option<AwsEc2ClientVpnEndpointAuthenticationOptionsActiveDirectoryDetails>
pub fn get_active_directory( &self, ) -> &Option<AwsEc2ClientVpnEndpointAuthenticationOptionsActiveDirectoryDetails>
Information about the Active Directory, if applicable. With Active Directory authentication, clients are authenticated against existing Active Directory groups.
sourcepub fn mutual_authentication(
self,
input: AwsEc2ClientVpnEndpointAuthenticationOptionsMutualAuthenticationDetails,
) -> Self
pub fn mutual_authentication( self, input: AwsEc2ClientVpnEndpointAuthenticationOptionsMutualAuthenticationDetails, ) -> Self
Information about the authentication certificates, if applicable.
sourcepub fn set_mutual_authentication(
self,
input: Option<AwsEc2ClientVpnEndpointAuthenticationOptionsMutualAuthenticationDetails>,
) -> Self
pub fn set_mutual_authentication( self, input: Option<AwsEc2ClientVpnEndpointAuthenticationOptionsMutualAuthenticationDetails>, ) -> Self
Information about the authentication certificates, if applicable.
sourcepub fn get_mutual_authentication(
&self,
) -> &Option<AwsEc2ClientVpnEndpointAuthenticationOptionsMutualAuthenticationDetails>
pub fn get_mutual_authentication( &self, ) -> &Option<AwsEc2ClientVpnEndpointAuthenticationOptionsMutualAuthenticationDetails>
Information about the authentication certificates, if applicable.
sourcepub fn federated_authentication(
self,
input: AwsEc2ClientVpnEndpointAuthenticationOptionsFederatedAuthenticationDetails,
) -> Self
pub fn federated_authentication( self, input: AwsEc2ClientVpnEndpointAuthenticationOptionsFederatedAuthenticationDetails, ) -> Self
Information about the IAM SAML identity provider, if applicable.
sourcepub fn set_federated_authentication(
self,
input: Option<AwsEc2ClientVpnEndpointAuthenticationOptionsFederatedAuthenticationDetails>,
) -> Self
pub fn set_federated_authentication( self, input: Option<AwsEc2ClientVpnEndpointAuthenticationOptionsFederatedAuthenticationDetails>, ) -> Self
Information about the IAM SAML identity provider, if applicable.
sourcepub fn get_federated_authentication(
&self,
) -> &Option<AwsEc2ClientVpnEndpointAuthenticationOptionsFederatedAuthenticationDetails>
pub fn get_federated_authentication( &self, ) -> &Option<AwsEc2ClientVpnEndpointAuthenticationOptionsFederatedAuthenticationDetails>
Information about the IAM SAML identity provider, if applicable.
sourcepub fn build(self) -> AwsEc2ClientVpnEndpointAuthenticationOptionsDetails
pub fn build(self) -> AwsEc2ClientVpnEndpointAuthenticationOptionsDetails
Consumes the builder and constructs a AwsEc2ClientVpnEndpointAuthenticationOptionsDetails.
Trait Implementations§
source§impl Clone for AwsEc2ClientVpnEndpointAuthenticationOptionsDetailsBuilder
impl Clone for AwsEc2ClientVpnEndpointAuthenticationOptionsDetailsBuilder
source§fn clone(&self) -> AwsEc2ClientVpnEndpointAuthenticationOptionsDetailsBuilder
fn clone(&self) -> AwsEc2ClientVpnEndpointAuthenticationOptionsDetailsBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for AwsEc2ClientVpnEndpointAuthenticationOptionsDetailsBuilder
impl Default for AwsEc2ClientVpnEndpointAuthenticationOptionsDetailsBuilder
source§fn default() -> AwsEc2ClientVpnEndpointAuthenticationOptionsDetailsBuilder
fn default() -> AwsEc2ClientVpnEndpointAuthenticationOptionsDetailsBuilder
source§impl PartialEq for AwsEc2ClientVpnEndpointAuthenticationOptionsDetailsBuilder
impl PartialEq for AwsEc2ClientVpnEndpointAuthenticationOptionsDetailsBuilder
source§fn eq(
&self,
other: &AwsEc2ClientVpnEndpointAuthenticationOptionsDetailsBuilder,
) -> bool
fn eq( &self, other: &AwsEc2ClientVpnEndpointAuthenticationOptionsDetailsBuilder, ) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for AwsEc2ClientVpnEndpointAuthenticationOptionsDetailsBuilder
Auto Trait Implementations§
impl Freeze for AwsEc2ClientVpnEndpointAuthenticationOptionsDetailsBuilder
impl RefUnwindSafe for AwsEc2ClientVpnEndpointAuthenticationOptionsDetailsBuilder
impl Send for AwsEc2ClientVpnEndpointAuthenticationOptionsDetailsBuilder
impl Sync for AwsEc2ClientVpnEndpointAuthenticationOptionsDetailsBuilder
impl Unpin for AwsEc2ClientVpnEndpointAuthenticationOptionsDetailsBuilder
impl UnwindSafe for AwsEc2ClientVpnEndpointAuthenticationOptionsDetailsBuilder
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