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