Struct aws_sdk_ec2::types::ClientVpnAuthentication
source · #[non_exhaustive]pub struct ClientVpnAuthentication { /* private fields */ }
Expand description
Describes the authentication methods used by a Client VPN endpoint. For more information, see Authentication in the Client VPN Administrator Guide.
Implementations§
source§impl ClientVpnAuthentication
impl ClientVpnAuthentication
sourcepub fn type(&self) -> Option<&ClientVpnAuthenticationType>
pub fn type(&self) -> Option<&ClientVpnAuthenticationType>
The authentication type used.
sourcepub fn active_directory(&self) -> Option<&DirectoryServiceAuthentication>
pub fn active_directory(&self) -> Option<&DirectoryServiceAuthentication>
Information about the Active Directory, if applicable.
sourcepub fn mutual_authentication(&self) -> Option<&CertificateAuthentication>
pub fn mutual_authentication(&self) -> Option<&CertificateAuthentication>
Information about the authentication certificates, if applicable.
sourcepub fn federated_authentication(&self) -> Option<&FederatedAuthentication>
pub fn federated_authentication(&self) -> Option<&FederatedAuthentication>
Information about the IAM SAML identity provider, if applicable.
source§impl ClientVpnAuthentication
impl ClientVpnAuthentication
sourcepub fn builder() -> ClientVpnAuthenticationBuilder
pub fn builder() -> ClientVpnAuthenticationBuilder
Creates a new builder-style object to manufacture ClientVpnAuthentication
.
Trait Implementations§
source§impl Clone for ClientVpnAuthentication
impl Clone for ClientVpnAuthentication
source§fn clone(&self) -> ClientVpnAuthentication
fn clone(&self) -> ClientVpnAuthentication
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ClientVpnAuthentication
impl Debug for ClientVpnAuthentication
source§impl PartialEq<ClientVpnAuthentication> for ClientVpnAuthentication
impl PartialEq<ClientVpnAuthentication> for ClientVpnAuthentication
source§fn eq(&self, other: &ClientVpnAuthentication) -> bool
fn eq(&self, other: &ClientVpnAuthentication) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ClientVpnAuthentication
Auto Trait Implementations§
impl RefUnwindSafe for ClientVpnAuthentication
impl Send for ClientVpnAuthentication
impl Sync for ClientVpnAuthentication
impl Unpin for ClientVpnAuthentication
impl UnwindSafe for ClientVpnAuthentication
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
Mutably borrows from an owned value. Read more