Class CfnVirtualNode.ClientTlsCertificateProperty
An object that represents the client's certificate.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.AppMesh
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnVirtualNode.ClientTlsCertificateProperty : CfnVirtualNode.IClientTlsCertificateProperty
Syntax (vb)
Public Class CfnVirtualNode.ClientTlsCertificateProperty 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() | An object that represents the client's certificate. |
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()
An object that represents the client's certificate.
public ClientTlsCertificateProperty()
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"
}
};
Properties
File
An object that represents a local file certificate.
public object? File { get; set; }
Property Value
Remarks
The certificate must meet specific requirements and you must have proxy authorization enabled. For more information, see Transport Layer Security (TLS) .
Type union: either IResolvable or CfnVirtualNode.IListenerTlsFileCertificateProperty
Sds
A reference to an object that represents a client's TLS Secret Discovery Service certificate.
public object? Sds { get; set; }