pub struct ClientVpnAuthentication {
pub active_directory: Option<DirectoryServiceAuthentication>,
pub federated_authentication: Option<FederatedAuthentication>,
pub mutual_authentication: Option<CertificateAuthentication>,
pub type_: Option<String>,
}Expand description
Describes the authentication methods used by a Client VPN endpoint. For more information, see Authentication in the AWS Client VPN Administrator Guide.
Fields§
§active_directory: Option<DirectoryServiceAuthentication>Information about the Active Directory, if applicable.
federated_authentication: Option<FederatedAuthentication>Information about the IAM SAML identity provider, if applicable.
mutual_authentication: Option<CertificateAuthentication>Information about the authentication certificates, if applicable.
type_: Option<String>The authentication type used.
Trait Implementations§
Source§impl Clone for ClientVpnAuthentication
impl Clone for ClientVpnAuthentication
Source§fn clone(&self) -> ClientVpnAuthentication
fn clone(&self) -> ClientVpnAuthentication
Returns a duplicate 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 Default for ClientVpnAuthentication
impl Default for ClientVpnAuthentication
Source§fn default() -> ClientVpnAuthentication
fn default() -> ClientVpnAuthentication
Returns the “default value” for a type. Read more
Source§impl PartialEq for ClientVpnAuthentication
impl PartialEq for ClientVpnAuthentication
impl StructuralPartialEq for ClientVpnAuthentication
Auto Trait Implementations§
impl Freeze for ClientVpnAuthentication
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