aws-cdk-lib.aws_appmesh.CfnVirtualNode.ListenerTlsValidationContextProperty

interface ListenerTlsValidationContextProperty

LanguageType name
.NETAmazon.CDK.AWS.AppMesh.CfnVirtualNode.ListenerTlsValidationContextProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsappmesh#CfnVirtualNode_ListenerTlsValidationContextProperty
Javasoftware.amazon.awscdk.services.appmesh.CfnVirtualNode.ListenerTlsValidationContextProperty
Pythonaws_cdk.aws_appmesh.CfnVirtualNode.ListenerTlsValidationContextProperty
TypeScript aws-cdk-lib » aws_appmesh » CfnVirtualNode » ListenerTlsValidationContextProperty

An object that represents a listener's Transport Layer Security (TLS) validation context.

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 listenerTlsValidationContextProperty: appmesh.CfnVirtualNode.ListenerTlsValidationContextProperty = {
  trust: {
    file: {
      certificateChain: 'certificateChain',
    },
    sds: {
      secretName: 'secretName',
    },
  },

  // the properties below are optional
  subjectAlternativeNames: {
    match: {
      exact: ['exact'],
    },
  },
};

Properties

NameTypeDescription
trustIResolvable | ListenerTlsValidationContextTrustPropertyA reference to where to retrieve the trust chain when validating a peer’s Transport Layer Security (TLS) certificate.
subjectAlternativeNames?IResolvable | SubjectAlternativeNamesPropertyA reference to an object that represents the SANs for a listener's Transport Layer Security (TLS) validation context.

trust

Type: IResolvable | ListenerTlsValidationContextTrustProperty

A reference to where to retrieve the trust chain when validating a peer’s Transport Layer Security (TLS) certificate.


subjectAlternativeNames?

Type: IResolvable | SubjectAlternativeNamesProperty (optional)

A reference to an object that represents the SANs for a listener's Transport Layer Security (TLS) validation context.