Interface CfnClientVpnEndpointPropsMixin.ClientAuthenticationRequestProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnClientVpnEndpointPropsMixin.ClientAuthenticationRequestProperty.Jsii$Proxy
- Enclosing class:
CfnClientVpnEndpointPropsMixin
@Stability(Stable)
public static interface CfnClientVpnEndpointPropsMixin.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.cfnpropertymixins.services.ec2.*;
ClientAuthenticationRequestProperty clientAuthenticationRequestProperty = ClientAuthenticationRequestProperty.builder()
.activeDirectory(DirectoryServiceAuthenticationRequestProperty.builder()
.directoryId("directoryId")
.build())
.federatedAuthentication(FederatedAuthenticationRequestProperty.builder()
.samlProviderArn("samlProviderArn")
.selfServiceSamlProviderArn("selfServiceSamlProviderArn")
.build())
.mutualAuthentication(CertificateAuthenticationRequestProperty.builder()
.clientRootCertificateChainArn("clientRootCertificateChainArn")
.build())
.type("type")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnClientVpnEndpointPropsMixin.ClientAuthenticationRequestProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectInformation about the Active Directory to be used, if applicable.default ObjectInformation about the IAM SAML identity provider, if applicable.default ObjectInformation about the authentication certificates to be used, if applicable.default StringgetType()The type of client authentication to be used.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getActiveDirectory
Information about the Active Directory to be used, if applicable.You must provide this information if Type is
directory-service-authentication.Returns union: either
IResolvableorCfnClientVpnEndpointPropsMixin.DirectoryServiceAuthenticationRequestProperty- See Also:
-
getFederatedAuthentication
Information about the IAM SAML identity provider, if applicable.Returns union: either
IResolvableorCfnClientVpnEndpointPropsMixin.FederatedAuthenticationRequestProperty- See Also:
-
getMutualAuthentication
Information about the authentication certificates to be used, if applicable.You must provide this information if Type is
certificate-authentication.Returns union: either
IResolvableorCfnClientVpnEndpointPropsMixin.CertificateAuthenticationRequestProperty- See Also:
-
getType
The type of client authentication to be used.- See Also:
-
builder
@Stability(Stable) static CfnClientVpnEndpointPropsMixin.ClientAuthenticationRequestProperty.Builder builder()
-