interface VirtualGatewayClientTlsCertificateProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.AppMesh.CfnVirtualGateway.VirtualGatewayClientTlsCertificateProperty | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsappmesh#CfnVirtualGateway_VirtualGatewayClientTlsCertificateProperty | 
  Java | software.amazon.awscdk.services.appmesh.CfnVirtualGateway.VirtualGatewayClientTlsCertificateProperty | 
  Python | aws_cdk.aws_appmesh.CfnVirtualGateway.VirtualGatewayClientTlsCertificateProperty | 
  TypeScript  | aws-cdk-lib » aws_appmesh » CfnVirtualGateway » VirtualGatewayClientTlsCertificateProperty | 
An object that represents the virtual gateway's client's Transport Layer Security (TLS) certificate.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_appmesh as appmesh } from 'aws-cdk-lib';
const virtualGatewayClientTlsCertificateProperty: appmesh.CfnVirtualGateway.VirtualGatewayClientTlsCertificateProperty = {
  file: {
    certificateChain: 'certificateChain',
    privateKey: 'privateKey',
  },
  sds: {
    secretName: 'secretName',
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| file? | IResolvable | Virtual | An object that represents a local file certificate. | 
| sds? | IResolvable | Virtual | A reference to an object that represents a virtual gateway's client's Secret Discovery Service certificate. | 
file?
Type:
IResolvable | Virtual
(optional)
An object that represents a local file certificate.
The certificate must meet specific requirements and you must have proxy authorization enabled. For more information, see Transport Layer Security (TLS) .
sds?
Type:
IResolvable | Virtual
(optional)
A reference to an object that represents a virtual gateway's client's Secret Discovery Service certificate.

 .NET
 Go
 Java
 Python
 TypeScript