public static interface CfnClientVpnEndpoint.ClientAuthenticationRequestProperty
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 java.lang.Object |
getActiveDirectory()
Information about the Active Directory to be used, if applicable.
|
default java.lang.Object |
getFederatedAuthentication()
Information about the IAM SAML identity provider, if applicable.
|
default java.lang.Object |
getMutualAuthentication()
Information about the authentication certificates to be used, if applicable.
|
java.lang.String |
getType()
The type of client authentication to be used.
|
java.lang.String getType()
default java.lang.Object getActiveDirectory()
You must provide this information if Type is directory-service-authentication
.
default java.lang.Object getFederatedAuthentication()
default java.lang.Object getMutualAuthentication()
You must provide this information if Type is certificate-authentication
.