aws-cdk-lib.aws_appmesh.CfnVirtualGateway.VirtualGatewayListenerTlsFileCertificateProperty

interface VirtualGatewayListenerTlsFileCertificateProperty

LanguageType name
.NETAmazon.CDK.AWS.AppMesh.CfnVirtualGateway.VirtualGatewayListenerTlsFileCertificateProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsappmesh#CfnVirtualGateway_VirtualGatewayListenerTlsFileCertificateProperty
Javasoftware.amazon.awscdk.services.appmesh.CfnVirtualGateway.VirtualGatewayListenerTlsFileCertificateProperty
Pythonaws_cdk.aws_appmesh.CfnVirtualGateway.VirtualGatewayListenerTlsFileCertificateProperty
TypeScript aws-cdk-lib » aws_appmesh » CfnVirtualGateway » VirtualGatewayListenerTlsFileCertificateProperty

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 { aws_appmesh as appmesh } from 'aws-cdk-lib';
const virtualGatewayListenerTlsFileCertificateProperty: appmesh.CfnVirtualGateway.VirtualGatewayListenerTlsFileCertificateProperty = {
  certificateChain: 'certificateChain',
  privateKey: 'privateKey',
};

Properties

NameTypeDescription
certificateChainstringThe certificate chain for the certificate.
privateKeystringThe private key for a certificate stored on the file system of the mesh endpoint 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 mesh endpoint that the proxy is running on.