Interface CfnVirtualNode.IClientTlsCertificateProperty
An object that represents the client's certificate.
Namespace: Amazon.CDK.AWS.AppMesh
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IClientTlsCertificateProperty
Syntax (vb)
Public Interface IClientTlsCertificateProperty
Remarks
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 clientTlsCertificateProperty = new ClientTlsCertificateProperty {
File = new ListenerTlsFileCertificateProperty {
CertificateChain = "certificateChain",
PrivateKey = "privateKey"
},
Sds = new ListenerTlsSdsCertificateProperty {
SecretName = "secretName"
}
};
Synopsis
Properties
File | An object that represents a local file certificate. |
Sds | A reference to an object that represents a client's TLS Secret Discovery Service certificate. |
Properties
File
An object that represents a local file certificate.
virtual object File { get; }
Property Value
System.Object
Remarks
The certificate must meet specific requirements and you must have proxy authorization enabled. For more information, see Transport Layer Security (TLS) .
Sds
A reference to an object that represents a client's TLS Secret Discovery Service certificate.
virtual object Sds { get; }
Property Value
System.Object