Class CfnVirtualGateway.VirtualGatewayListenerTlsValidationContextTrustProperty
An object that represents a virtual gateway's listener's Transport Layer Security (TLS) validation context trust.
Inheritance
System.Object
CfnVirtualGateway.VirtualGatewayListenerTlsValidationContextTrustProperty
Namespace: Amazon.CDK.AWS.AppMesh
Assembly: Amazon.CDK.AWS.AppMesh.dll
Syntax (csharp)
public class VirtualGatewayListenerTlsValidationContextTrustProperty : Object, CfnVirtualGateway.IVirtualGatewayListenerTlsValidationContextTrustProperty
Syntax (vb)
Public Class VirtualGatewayListenerTlsValidationContextTrustProperty
Inherits Object
Implements CfnVirtualGateway.IVirtualGatewayListenerTlsValidationContextTrustProperty
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 virtualGatewayListenerTlsValidationContextTrustProperty = new VirtualGatewayListenerTlsValidationContextTrustProperty {
File = new VirtualGatewayTlsValidationContextFileTrustProperty {
CertificateChain = "certificateChain"
},
Sds = new VirtualGatewayTlsValidationContextSdsTrustProperty {
SecretName = "secretName"
}
};
Synopsis
Constructors
VirtualGatewayListenerTlsValidationContextTrustProperty() |
Properties
File | An object that represents a Transport Layer Security (TLS) validation context trust for a local file. |
Sds | A reference to an object that represents a virtual gateway's listener's Transport Layer Security (TLS) Secret Discovery Service validation context trust. |
Constructors
VirtualGatewayListenerTlsValidationContextTrustProperty()
public VirtualGatewayListenerTlsValidationContextTrustProperty()
Properties
File
An object that represents a Transport Layer Security (TLS) validation context trust for a local file.
public object File { get; set; }
Property Value
System.Object
Remarks
Sds
A reference to an object that represents a virtual gateway's listener's Transport Layer Security (TLS) Secret Discovery Service validation context trust.
public object Sds { get; set; }
Property Value
System.Object