Class CfnVirtualNode.ListenerTlsFileCertificateProperty
An object that represents a local file certificate.
Inheritance
System.Object
CfnVirtualNode.ListenerTlsFileCertificateProperty
Namespace: Amazon.CDK.AWS.AppMesh
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class ListenerTlsFileCertificateProperty : Object, CfnVirtualNode.IListenerTlsFileCertificateProperty
Syntax (vb)
Public Class ListenerTlsFileCertificateProperty
Inherits Object
Implements CfnVirtualNode.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
Constructors
ListenerTlsFileCertificateProperty() |
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. |
Constructors
ListenerTlsFileCertificateProperty()
public ListenerTlsFileCertificateProperty()
Properties
CertificateChain
The certificate chain for the certificate.
public string CertificateChain { get; set; }
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.
public string PrivateKey { get; set; }
Property Value
System.String