@Stability(value=Stable)
public static interface CfnClientVpnEndpoint.ClientAuthenticationRequestProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnClientVpnEndpoint.ClientAuthenticationRequestProperty.Builder
A builder for
CfnClientVpnEndpoint.ClientAuthenticationRequestProperty |
static class |
CfnClientVpnEndpoint.ClientAuthenticationRequestProperty.Jsii$Proxy
An implementation for
CfnClientVpnEndpoint.ClientAuthenticationRequestProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnClientVpnEndpoint.ClientAuthenticationRequestProperty.Builder |
builder() |
default Object |
getActiveDirectory()
Information about the Active Directory to be used, if applicable.
|
default Object |
getFederatedAuthentication()
Information about the IAM SAML identity provider, if applicable.
|
default Object |
getMutualAuthentication()
Information about the authentication certificates to be used, if applicable.
|
String |
getType()
The type of client authentication to be used.
|
@Stability(value=Stable) @NotNull String getType()
@Stability(value=Stable) @Nullable default Object getActiveDirectory()
You must provide this information if Type is directory-service-authentication .
@Stability(value=Stable) @Nullable default Object getFederatedAuthentication()
@Stability(value=Stable) @Nullable default Object getMutualAuthentication()
You must provide this information if Type is certificate-authentication .
@Stability(value=Stable) static CfnClientVpnEndpoint.ClientAuthenticationRequestProperty.Builder builder()
Copyright © 2022. All rights reserved.