Interface CfnClientVpnEndpoint.ClientAuthenticationRequestProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnClientVpnEndpoint.ClientAuthenticationRequestProperty.Jsii$Proxy
- Enclosing class:
CfnClientVpnEndpoint
@Stability(Stable)
public static interface CfnClientVpnEndpoint.ClientAuthenticationRequestProperty
extends software.amazon.jsii.JsiiSerializable
Describes the authentication method to be used by a Client VPN endpoint.
For more information, see Authentication in the AWS Client VPN Administrator Guide .
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.ec2.*; ClientAuthenticationRequestProperty clientAuthenticationRequestProperty = ClientAuthenticationRequestProperty.builder() .type("type") // the properties below are optional .activeDirectory(DirectoryServiceAuthenticationRequestProperty.builder() .directoryId("directoryId") .build()) .federatedAuthentication(FederatedAuthenticationRequestProperty.builder() .samlProviderArn("samlProviderArn") // the properties below are optional .selfServiceSamlProviderArn("selfServiceSamlProviderArn") .build()) .mutualAuthentication(CertificateAuthenticationRequestProperty.builder() .clientRootCertificateChainArn("clientRootCertificateChainArn") .build()) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnClientVpnEndpoint.ClientAuthenticationRequestProperty
static final class
An implementation forCfnClientVpnEndpoint.ClientAuthenticationRequestProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Object
Information about the Active Directory to be used, if applicable.default Object
Information about the IAM SAML identity provider, if applicable.default Object
Information about the authentication certificates to be used, if applicable.getType()
The type of client authentication to be used.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getType
The type of client authentication to be used.- See Also:
-
getActiveDirectory
Information about the Active Directory to be used, if applicable.You must provide this information if Type is
directory-service-authentication
.- See Also:
-
getFederatedAuthentication
Information about the IAM SAML identity provider, if applicable.- See Also:
-
getMutualAuthentication
Information about the authentication certificates to be used, if applicable.You must provide this information if Type is
certificate-authentication
.- See Also:
-
builder
@Stability(Stable) static CfnClientVpnEndpoint.ClientAuthenticationRequestProperty.Builder builder()
-