pub struct ClientVpnAuthenticationRequest {
pub active_directory: Option<DirectoryServiceAuthenticationRequest>,
pub federated_authentication: Option<FederatedAuthenticationRequest>,
pub mutual_authentication: Option<CertificateAuthenticationRequest>,
pub type_: Option<String>,
}
Expand description
Describes the authentication method to be used by a Client VPN endpoint. For more information, see Authentication in the AWS Client VPN Administrator Guide.
Fields§
§active_directory: Option<DirectoryServiceAuthenticationRequest>
Information about the Active Directory to be used, if applicable. You must provide this information if Type is directory-service-authentication
.
federated_authentication: Option<FederatedAuthenticationRequest>
Information about the IAM SAML identity provider to be used, if applicable. You must provide this information if Type is federated-authentication
.
mutual_authentication: Option<CertificateAuthenticationRequest>
Information about the authentication certificates to be used, if applicable. You must provide this information if Type is certificate-authentication
.
type_: Option<String>
The type of client authentication to be used.
Trait Implementations§
Source§impl Clone for ClientVpnAuthenticationRequest
impl Clone for ClientVpnAuthenticationRequest
Source§fn clone(&self) -> ClientVpnAuthenticationRequest
fn clone(&self) -> ClientVpnAuthenticationRequest
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 Default for ClientVpnAuthenticationRequest
impl Default for ClientVpnAuthenticationRequest
Source§fn default() -> ClientVpnAuthenticationRequest
fn default() -> ClientVpnAuthenticationRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ClientVpnAuthenticationRequest
impl PartialEq for ClientVpnAuthenticationRequest
Source§fn eq(&self, other: &ClientVpnAuthenticationRequest) -> bool
fn eq(&self, other: &ClientVpnAuthenticationRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ClientVpnAuthenticationRequest
Auto Trait Implementations§
impl Freeze for ClientVpnAuthenticationRequest
impl RefUnwindSafe for ClientVpnAuthenticationRequest
impl Send for ClientVpnAuthenticationRequest
impl Sync for ClientVpnAuthenticationRequest
impl Unpin for ClientVpnAuthenticationRequest
impl UnwindSafe for ClientVpnAuthenticationRequest
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