Struct aws_sdk_ec2::types::ClientVpnAuthenticationRequest
source · #[non_exhaustive]pub struct ClientVpnAuthenticationRequest { /* private fields */ }
Expand description
Describes the authentication method to be used by a Client VPN endpoint. For more information, see Authentication in the Client VPN Administrator Guide.
Implementations§
source§impl ClientVpnAuthenticationRequest
impl ClientVpnAuthenticationRequest
sourcepub fn type(&self) -> Option<&ClientVpnAuthenticationType>
pub fn type(&self) -> Option<&ClientVpnAuthenticationType>
The type of client authentication to be used.
sourcepub fn active_directory(&self) -> Option<&DirectoryServiceAuthenticationRequest>
pub fn active_directory(&self) -> Option<&DirectoryServiceAuthenticationRequest>
Information about the Active Directory to be used, if applicable. You must provide this information if Type is directory-service-authentication
.
sourcepub fn mutual_authentication(&self) -> Option<&CertificateAuthenticationRequest>
pub fn mutual_authentication(&self) -> Option<&CertificateAuthenticationRequest>
Information about the authentication certificates to be used, if applicable. You must provide this information if Type is certificate-authentication
.
sourcepub fn federated_authentication(
&self
) -> Option<&FederatedAuthenticationRequest>
pub fn federated_authentication( &self ) -> Option<&FederatedAuthenticationRequest>
Information about the IAM SAML identity provider to be used, if applicable. You must provide this information if Type is federated-authentication
.
source§impl ClientVpnAuthenticationRequest
impl ClientVpnAuthenticationRequest
sourcepub fn builder() -> ClientVpnAuthenticationRequestBuilder
pub fn builder() -> ClientVpnAuthenticationRequestBuilder
Creates a new builder-style object to manufacture ClientVpnAuthenticationRequest
.
Trait Implementations§
source§impl Clone for ClientVpnAuthenticationRequest
impl Clone for ClientVpnAuthenticationRequest
source§fn clone(&self) -> ClientVpnAuthenticationRequest
fn clone(&self) -> ClientVpnAuthenticationRequest
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 PartialEq<ClientVpnAuthenticationRequest> for ClientVpnAuthenticationRequest
impl PartialEq<ClientVpnAuthenticationRequest> for ClientVpnAuthenticationRequest
source§fn eq(&self, other: &ClientVpnAuthenticationRequest) -> bool
fn eq(&self, other: &ClientVpnAuthenticationRequest) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ClientVpnAuthenticationRequest
Auto Trait Implementations§
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