Interface CfnVirtualGateway.IVirtualGatewayListenerTlsCertificateProperty
An object that represents a listener's Transport Layer Security (TLS) certificate.
Namespace: Amazon.CDK.AWS.AppMesh
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnVirtualGateway.IVirtualGatewayListenerTlsCertificateProperty
Syntax (vb)
Public Interface CfnVirtualGateway.IVirtualGatewayListenerTlsCertificateProperty
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 virtualGatewayListenerTlsCertificateProperty = new VirtualGatewayListenerTlsCertificateProperty {
Acm = new VirtualGatewayListenerTlsAcmCertificateProperty {
CertificateArn = "certificateArn"
},
File = new VirtualGatewayListenerTlsFileCertificateProperty {
CertificateChain = "certificateChain",
PrivateKey = "privateKey"
},
Sds = new VirtualGatewayListenerTlsSdsCertificateProperty {
SecretName = "secretName"
}
};
Synopsis
Properties
| Acm | A reference to an object that represents an Certificate Manager certificate. |
| File | A reference to an object that represents a local file certificate. |
| Sds | A reference to an object that represents a virtual gateway's listener's Secret Discovery Service certificate. |
Properties
Acm
A reference to an object that represents an Certificate Manager certificate.
object? Acm { get; }
Property Value
Remarks
Type union: either IResolvable or CfnVirtualGateway.IVirtualGatewayListenerTlsAcmCertificateProperty
File
A reference to an object that represents a local file certificate.
object? File { get; }
Property Value
Remarks
Type union: either IResolvable or CfnVirtualGateway.IVirtualGatewayListenerTlsFileCertificateProperty
Sds
A reference to an object that represents a virtual gateway's listener's Secret Discovery Service certificate.
object? Sds { get; }
Property Value
Remarks
Type union: either IResolvable or CfnVirtualGateway.IVirtualGatewayListenerTlsSdsCertificateProperty