Interface CfnVirtualGateway.IVirtualGatewayTlsValidationContextProperty
An object that represents a Transport Layer Security (TLS) validation context.
Namespace: Amazon.CDK.AWS.AppMesh
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IVirtualGatewayTlsValidationContextProperty
Syntax (vb)
Public Interface IVirtualGatewayTlsValidationContextProperty
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 virtualGatewayTlsValidationContextProperty = new VirtualGatewayTlsValidationContextProperty {
Trust = new VirtualGatewayTlsValidationContextTrustProperty {
Acm = new VirtualGatewayTlsValidationContextAcmTrustProperty {
CertificateAuthorityArns = new [] { "certificateAuthorityArns" }
},
File = new VirtualGatewayTlsValidationContextFileTrustProperty {
CertificateChain = "certificateChain"
},
Sds = new VirtualGatewayTlsValidationContextSdsTrustProperty {
SecretName = "secretName"
}
},
// the properties below are optional
SubjectAlternativeNames = new SubjectAlternativeNamesProperty {
Match = new SubjectAlternativeNameMatchersProperty {
Exact = new [] { "exact" }
}
}
};
Synopsis
Properties
SubjectAlternativeNames | A reference to an object that represents the SANs for a virtual gateway's listener's Transport Layer Security (TLS) validation context. |
Trust | A reference to where to retrieve the trust chain when validating a peer’s Transport Layer Security (TLS) certificate. |
Properties
SubjectAlternativeNames
A reference to an object that represents the SANs for a virtual gateway's listener's Transport Layer Security (TLS) validation context.
virtual object SubjectAlternativeNames { get; }
Property Value
System.Object
Remarks
Trust
A reference to where to retrieve the trust chain when validating a peer’s Transport Layer Security (TLS) certificate.
object Trust { get; }
Property Value
System.Object