aws-cdk-lib.aws_appmesh.TlsValidationTrustConfig

interface TlsValidationTrustConfig

LanguageType name
.NETAmazon.CDK.AWS.AppMesh.TlsValidationTrustConfig
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsappmesh#TlsValidationTrustConfig
Javasoftware.amazon.awscdk.services.appmesh.TlsValidationTrustConfig
Pythonaws_cdk.aws_appmesh.TlsValidationTrustConfig
TypeScript (source)aws-cdk-lib » aws_appmesh » TlsValidationTrustConfig

Obtainable from TlsValidationTrust.bind()

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

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_appmesh as appmesh } from 'aws-cdk-lib';
const tlsValidationTrustConfig: appmesh.TlsValidationTrustConfig = {
  tlsValidationTrust: {
    acm: {
      certificateAuthorityArns: ['certificateAuthorityArns'],
    },
    file: {
      certificateChain: 'certificateChain',
    },
    sds: {
      secretName: 'secretName',
    },
  },
};

Properties

NameTypeDescription
tlsValidationTrustTlsValidationContextTrustPropertyVirtualNode CFN configuration for client policy's TLS Validation Trust.

tlsValidationTrust

Type: TlsValidationContextTrustProperty

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