interface ListenerTlsFileCertificateProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.AppMesh.CfnVirtualNode.ListenerTlsFileCertificateProperty | 
|  Java | software.amazon.awscdk.services.appmesh.CfnVirtualNode.ListenerTlsFileCertificateProperty | 
|  Python | aws_cdk.aws_appmesh.CfnVirtualNode.ListenerTlsFileCertificateProperty | 
|  TypeScript | @aws-cdk/aws-appmesh»CfnVirtualNode»ListenerTlsFileCertificateProperty | 
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) .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as appmesh from '@aws-cdk/aws-appmesh';
const listenerTlsFileCertificateProperty: appmesh.CfnVirtualNode.ListenerTlsFileCertificateProperty = {
  certificateChain: 'certificateChain',
  privateKey: 'privateKey',
};
Properties
| Name | Type | Description | 
|---|---|---|
| certificate | string | The certificate chain for the certificate. | 
| private | string | The private key for a certificate stored on the file system of the virtual node that the proxy is running on. | 
certificateChain
Type:
string
The certificate chain for the certificate.
privateKey
Type:
string
The private key for a certificate stored on the file system of the virtual node that the proxy is running on.
