#[non_exhaustive]pub struct AwsEc2ClientVpnEndpointAuthenticationOptionsDetails {
pub type: Option<String>,
pub active_directory: Option<AwsEc2ClientVpnEndpointAuthenticationOptionsActiveDirectoryDetails>,
pub mutual_authentication: Option<AwsEc2ClientVpnEndpointAuthenticationOptionsMutualAuthenticationDetails>,
pub federated_authentication: Option<AwsEc2ClientVpnEndpointAuthenticationOptionsFederatedAuthenticationDetails>,
}
Expand description
Information about the authentication method used by the Client VPN endpoint.
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.type: Option<String>
The authentication type used.
active_directory: Option<AwsEc2ClientVpnEndpointAuthenticationOptionsActiveDirectoryDetails>
Information about the Active Directory, if applicable. With Active Directory authentication, clients are authenticated against existing Active Directory groups.
mutual_authentication: Option<AwsEc2ClientVpnEndpointAuthenticationOptionsMutualAuthenticationDetails>
Information about the authentication certificates, if applicable.
federated_authentication: Option<AwsEc2ClientVpnEndpointAuthenticationOptionsFederatedAuthenticationDetails>
Information about the IAM SAML identity provider, if applicable.
Implementations§
source§impl AwsEc2ClientVpnEndpointAuthenticationOptionsDetails
impl AwsEc2ClientVpnEndpointAuthenticationOptionsDetails
sourcepub fn active_directory(
&self
) -> Option<&AwsEc2ClientVpnEndpointAuthenticationOptionsActiveDirectoryDetails>
pub fn 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
) -> Option<&AwsEc2ClientVpnEndpointAuthenticationOptionsMutualAuthenticationDetails>
pub fn mutual_authentication( &self ) -> Option<&AwsEc2ClientVpnEndpointAuthenticationOptionsMutualAuthenticationDetails>
Information about the authentication certificates, if applicable.
sourcepub fn federated_authentication(
&self
) -> Option<&AwsEc2ClientVpnEndpointAuthenticationOptionsFederatedAuthenticationDetails>
pub fn federated_authentication( &self ) -> Option<&AwsEc2ClientVpnEndpointAuthenticationOptionsFederatedAuthenticationDetails>
Information about the IAM SAML identity provider, if applicable.
source§impl AwsEc2ClientVpnEndpointAuthenticationOptionsDetails
impl AwsEc2ClientVpnEndpointAuthenticationOptionsDetails
sourcepub fn builder() -> AwsEc2ClientVpnEndpointAuthenticationOptionsDetailsBuilder
pub fn builder() -> AwsEc2ClientVpnEndpointAuthenticationOptionsDetailsBuilder
Creates a new builder-style object to manufacture AwsEc2ClientVpnEndpointAuthenticationOptionsDetails
.
Trait Implementations§
source§impl Clone for AwsEc2ClientVpnEndpointAuthenticationOptionsDetails
impl Clone for AwsEc2ClientVpnEndpointAuthenticationOptionsDetails
source§fn clone(&self) -> AwsEc2ClientVpnEndpointAuthenticationOptionsDetails
fn clone(&self) -> AwsEc2ClientVpnEndpointAuthenticationOptionsDetails
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for AwsEc2ClientVpnEndpointAuthenticationOptionsDetails
impl PartialEq for AwsEc2ClientVpnEndpointAuthenticationOptionsDetails
source§fn eq(
&self,
other: &AwsEc2ClientVpnEndpointAuthenticationOptionsDetails
) -> bool
fn eq( &self, other: &AwsEc2ClientVpnEndpointAuthenticationOptionsDetails ) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AwsEc2ClientVpnEndpointAuthenticationOptionsDetails
Auto Trait Implementations§
impl Freeze for AwsEc2ClientVpnEndpointAuthenticationOptionsDetails
impl RefUnwindSafe for AwsEc2ClientVpnEndpointAuthenticationOptionsDetails
impl Send for AwsEc2ClientVpnEndpointAuthenticationOptionsDetails
impl Sync for AwsEc2ClientVpnEndpointAuthenticationOptionsDetails
impl Unpin for AwsEc2ClientVpnEndpointAuthenticationOptionsDetails
impl UnwindSafe for AwsEc2ClientVpnEndpointAuthenticationOptionsDetails
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