Class CfnVirtualGateway.VirtualGatewayListenerTlsCertificateProperty
An object that represents a listener's Transport Layer Security (TLS) certificate.
Inheritance
System.Object
CfnVirtualGateway.VirtualGatewayListenerTlsCertificateProperty
Namespace: Amazon.CDK.AWS.AppMesh
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class VirtualGatewayListenerTlsCertificateProperty : Object, CfnVirtualGateway.IVirtualGatewayListenerTlsCertificateProperty
Syntax (vb)
Public Class VirtualGatewayListenerTlsCertificateProperty
Inherits Object
Implements 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
Constructors
VirtualGatewayListenerTlsCertificateProperty() |
Properties
Acm | A reference to an object that represents an AWS 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. |
Constructors
VirtualGatewayListenerTlsCertificateProperty()
public VirtualGatewayListenerTlsCertificateProperty()
Properties
Acm
A reference to an object that represents an AWS Certificate Manager certificate.
public object Acm { get; set; }
Property Value
System.Object
Remarks
File
A reference to an object that represents a local file certificate.
public object File { get; set; }
Property Value
System.Object
Remarks
Sds
A reference to an object that represents a virtual gateway's listener's Secret Discovery Service certificate.
public object Sds { get; set; }
Property Value
System.Object