Struct aws_sdk_ec2::model::ClientVpnAuthenticationRequest [−][src]
#[non_exhaustive]pub struct ClientVpnAuthenticationRequest {
pub type: Option<ClientVpnAuthenticationType>,
pub active_directory: Option<DirectoryServiceAuthenticationRequest>,
pub mutual_authentication: Option<CertificateAuthenticationRequest>,
pub federated_authentication: Option<FederatedAuthenticationRequest>,
}
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.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.type: Option<ClientVpnAuthenticationType>
The type of client authentication to be used.
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
.
mutual_authentication: Option<CertificateAuthenticationRequest>
Information about the authentication certificates to be used, if applicable. You must provide this information if Type is certificate-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
.
Implementations
The type of client authentication to be used.
Information about the Active Directory to be used, if applicable. You must provide this information if Type is directory-service-authentication
.
Information about the authentication certificates to be used, if applicable. You must provide this information if Type is certificate-authentication
.
Information about the IAM SAML identity provider to be used, if applicable. You must provide this information if Type is federated-authentication
.
Creates a new builder-style object to manufacture ClientVpnAuthenticationRequest
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl Send for ClientVpnAuthenticationRequest
impl Sync for ClientVpnAuthenticationRequest
impl Unpin for ClientVpnAuthenticationRequest
impl UnwindSafe for ClientVpnAuthenticationRequest
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more