Interface CfnVirtualNode.IListenerTlsFileCertificateProperty
An object that represents a local file certificate.
Namespace: Amazon.CDK.AWS.AppMesh
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IListenerTlsFileCertificateProperty
Syntax (vb)
Public Interface IListenerTlsFileCertificateProperty
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 listenerTlsFileCertificateProperty = new ListenerTlsFileCertificateProperty {
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 virtual node that the proxy is running on. |
Properties
CertificateChain
The certificate chain for the certificate.
string CertificateChain { get; }
Property Value
System.String
Remarks
PrivateKey
The private key for a certificate stored on the file system of the virtual node that the proxy is running on.
string PrivateKey { get; }
Property Value
System.String