[][src]Struct rusoto_ec2::ClientVpnAuthentication

pub struct ClientVpnAuthentication {
    pub active_directory: Option<DirectoryServiceAuthentication>,
    pub federated_authentication: Option<FederatedAuthentication>,
    pub mutual_authentication: Option<CertificateAuthentication>,
    pub type_: Option<String>,
}

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

impl Clone for ClientVpnAuthentication[src]

impl Debug for ClientVpnAuthentication[src]

impl Default for ClientVpnAuthentication[src]

impl PartialEq<ClientVpnAuthentication> for ClientVpnAuthentication[src]

impl StructuralPartialEq for ClientVpnAuthentication[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.