Class CfnVirtualNode.TlsValidationContextTrustProperty
An object that represents a Transport Layer Security (TLS) validation context trust.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.AppMesh
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnVirtualNode.TlsValidationContextTrustProperty : CfnVirtualNode.ITlsValidationContextTrustProperty
Syntax (vb)
Public Class CfnVirtualNode.TlsValidationContextTrustProperty Implements CfnVirtualNode.ITlsValidationContextTrustProperty
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 tlsValidationContextTrustProperty = new TlsValidationContextTrustProperty {
Acm = new TlsValidationContextAcmTrustProperty {
CertificateAuthorityArns = new [] { "certificateAuthorityArns" }
},
File = new TlsValidationContextFileTrustProperty {
CertificateChain = "certificateChain"
},
Sds = new TlsValidationContextSdsTrustProperty {
SecretName = "secretName"
}
};
Synopsis
Constructors
| TlsValidationContextTrustProperty() | An object that represents a Transport Layer Security (TLS) validation context trust. |
Properties
| Acm | A reference to an object that represents a Transport Layer Security (TLS) validation context trust for an 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 Transport Layer Security (TLS) Secret Discovery Service validation context trust. |
Constructors
TlsValidationContextTrustProperty()
An object that represents a Transport Layer Security (TLS) validation context trust.
public TlsValidationContextTrustProperty()
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 tlsValidationContextTrustProperty = new TlsValidationContextTrustProperty {
Acm = new TlsValidationContextAcmTrustProperty {
CertificateAuthorityArns = new [] { "certificateAuthorityArns" }
},
File = new TlsValidationContextFileTrustProperty {
CertificateChain = "certificateChain"
},
Sds = new TlsValidationContextSdsTrustProperty {
SecretName = "secretName"
}
};
Properties
Acm
A reference to an object that represents a Transport Layer Security (TLS) validation context trust for an Certificate Manager certificate.
public object? Acm { get; set; }
Property Value
Remarks
File
An object that represents a Transport Layer Security (TLS) validation context trust for a local file.
public object? File { get; set; }
Property Value
Remarks
Sds
A reference to an object that represents a Transport Layer Security (TLS) Secret Discovery Service validation context trust.
public object? Sds { get; set; }