Show / Hide Table of Contents

Interface ITlsValidationTrustConfig

All Properties for TLS Validation Trusts for both Client Policy and Listener.

Namespace: Amazon.CDK.AWS.AppMesh
Assembly: Amazon.CDK.AWS.AppMesh.dll
Syntax (csharp)
public interface ITlsValidationTrustConfig
Syntax (vb)
Public Interface ITlsValidationTrustConfig
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 tlsValidationTrustConfig = new TlsValidationTrustConfig {
    TlsValidationTrust = new TlsValidationContextTrustProperty {
        Acm = new TlsValidationContextAcmTrustProperty {
            CertificateAuthorityArns = new [] { "certificateAuthorityArns" }
        },
        File = new TlsValidationContextFileTrustProperty {
            CertificateChain = "certificateChain"
        },
        Sds = new TlsValidationContextSdsTrustProperty {
            SecretName = "secretName"
        }
    }
};

Synopsis

Properties

TlsValidationTrust

VirtualNode CFN configuration for client policy's TLS Validation Trust.

Properties

TlsValidationTrust

VirtualNode CFN configuration for client policy's TLS Validation Trust.

CfnVirtualNode.ITlsValidationContextTrustProperty TlsValidationTrust { get; }
Property Value

CfnVirtualNode.ITlsValidationContextTrustProperty

Back to top Generated by DocFX