interface CertificateAuthenticationRequestProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EC2.CfnClientVpnEndpointPropsMixin.CertificateAuthenticationRequestProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsec2#CfnClientVpnEndpointPropsMixin_CertificateAuthenticationRequestProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.ec2.CfnClientVpnEndpointPropsMixin.CertificateAuthenticationRequestProperty |
Python | aws_cdk.cfn_property_mixins.aws_ec2.CfnClientVpnEndpointPropsMixin.CertificateAuthenticationRequestProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ec2 » CfnClientVpnEndpointPropsMixin » CertificateAuthenticationRequestProperty |
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 { aws_ec2 as ec2 } from '@aws-cdk/cfn-property-mixins';
const certificateAuthenticationRequestProperty: ec2.CfnClientVpnEndpointPropsMixin.CertificateAuthenticationRequestProperty = {
clientRootCertificateChainArn: 'clientRootCertificateChainArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| client | string | The ARN of the client certificate. |
clientRootCertificateChainArn?
Type:
string
(optional)
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).

.NET
Go
Java
Python
TypeScript