Interface ITlsCertificateConfig
A wrapper for the tls config returned by TlsCertificate.bind
.
Namespace: Amazon.CDK.AWS.AppMesh
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ITlsCertificateConfig
Syntax (vb)
Public Interface ITlsCertificateConfig
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 tlsCertificateConfig = new TlsCertificateConfig {
TlsCertificate = new ListenerTlsCertificateProperty {
Acm = new ListenerTlsAcmCertificateProperty {
CertificateArn = "certificateArn"
},
File = new ListenerTlsFileCertificateProperty {
CertificateChain = "certificateChain",
PrivateKey = "privateKey"
},
Sds = new ListenerTlsSdsCertificateProperty {
SecretName = "secretName"
}
}
};
Synopsis
Properties
TlsCertificate | The CFN shape for a TLS certificate. |
Properties
TlsCertificate
The CFN shape for a TLS certificate.
CfnVirtualNode.IListenerTlsCertificateProperty TlsCertificate { get; }
Property Value
CfnVirtualNode.IListenerTlsCertificateProperty