Interface CfnClientVpnEndpoint.CertificateAuthenticationRequestProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnClientVpnEndpoint.CertificateAuthenticationRequestProperty.Jsii$Proxy
- Enclosing class:
CfnClientVpnEndpoint
@Stability(Stable)
public static interface CfnClientVpnEndpoint.CertificateAuthenticationRequestProperty
extends software.amazon.jsii.JsiiSerializable
Information about the client certificate to be used for authentication.
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.*;
CertificateAuthenticationRequestProperty certificateAuthenticationRequestProperty = CertificateAuthenticationRequestProperty.builder()
.clientRootCertificateChainArn("clientRootCertificateChainArn")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnClientVpnEndpoint.CertificateAuthenticationRequestProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getClientRootCertificateChainArn
The ARN of the client certificate.The certificate must be signed by a certificate authority (CA) and it must be provisioned in Certificate Manager (ACM).
- See Also:
-
builder
@Stability(Stable) static CfnClientVpnEndpoint.CertificateAuthenticationRequestProperty.Builder builder()
-