Class CfnVirtualNode.ClientTlsCertificateProperty
An object that represents the client's certificate.
Inheritance
System.Object
CfnVirtualNode.ClientTlsCertificateProperty
Implements
Namespace: Amazon.CDK.AWS.AppMesh
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class ClientTlsCertificateProperty : Object, CfnVirtualNode.IClientTlsCertificateProperty
Syntax (vb)
Public Class ClientTlsCertificateProperty
Inherits Object
Implements CfnVirtualNode.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
Constructors
ClientTlsCertificateProperty() |
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. |
Constructors
ClientTlsCertificateProperty()
public ClientTlsCertificateProperty()
Properties
File
An object that represents a local file certificate.
public object File { get; set; }
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.
public object Sds { get; set; }
Property Value
System.Object