Interface CfnVirtualGateway.IVirtualGatewayListenerTlsFileCertificateProperty
An object that represents a local file certificate.
Namespace: Amazon.CDK.AWS.AppMesh
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnVirtualGateway.IVirtualGatewayListenerTlsFileCertificateProperty
Syntax (vb)
Public Interface CfnVirtualGateway.IVirtualGatewayListenerTlsFileCertificateProperty
Remarks
The certificate must meet specific requirements and you must have proxy authorization enabled. For more information, see Transport Layer Security (TLS) .
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.AppMesh;
var virtualGatewayListenerTlsFileCertificateProperty = new VirtualGatewayListenerTlsFileCertificateProperty {
CertificateChain = "certificateChain",
PrivateKey = "privateKey"
};
Synopsis
Properties
| CertificateChain | The certificate chain for the certificate. |
| PrivateKey | The private key for a certificate stored on the file system of the mesh endpoint that the proxy is running on. |
Properties
CertificateChain
The certificate chain for the certificate.
string CertificateChain { get; }
Property Value
Remarks
PrivateKey
The private key for a certificate stored on the file system of the mesh endpoint that the proxy is running on.
string PrivateKey { get; }