Interface CfnVirtualGateway.IVirtualGatewayTlsValidationContextTrustProperty
An object that represents a Transport Layer Security (TLS) validation context trust.
Namespace: Amazon.CDK.AWS.AppMesh
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IVirtualGatewayTlsValidationContextTrustProperty
Syntax (vb)
Public Interface IVirtualGatewayTlsValidationContextTrustProperty
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 virtualGatewayTlsValidationContextTrustProperty = new VirtualGatewayTlsValidationContextTrustProperty {
Acm = new VirtualGatewayTlsValidationContextAcmTrustProperty {
CertificateAuthorityArns = new [] { "certificateAuthorityArns" }
},
File = new VirtualGatewayTlsValidationContextFileTrustProperty {
CertificateChain = "certificateChain"
},
Sds = new VirtualGatewayTlsValidationContextSdsTrustProperty {
SecretName = "secretName"
}
};
Synopsis
Properties
Acm | A reference to an object that represents a Transport Layer Security (TLS) validation context trust for an AWS Certificate Manager certificate. |
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 Transport Layer Security (TLS) Secret Discovery Service validation context trust. |
Properties
Acm
A reference to an object that represents a Transport Layer Security (TLS) validation context trust for an AWS Certificate Manager certificate.
virtual object Acm { get; }
Property Value
System.Object
Remarks
File
An object that represents a Transport Layer Security (TLS) validation context trust for a local file.
virtual object File { get; }
Property Value
System.Object
Remarks
Sds
A reference to an object that represents a virtual gateway's Transport Layer Security (TLS) Secret Discovery Service validation context trust.
virtual object Sds { get; }
Property Value
System.Object