aws-cdk-lib.aws_appmesh.CfnVirtualNode.ListenerTlsValidationContextTrustProperty

interface ListenerTlsValidationContextTrustProperty

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

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

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 listenerTlsValidationContextTrustProperty: appmesh.CfnVirtualNode.ListenerTlsValidationContextTrustProperty = {
  file: {
    certificateChain: 'certificateChain',
  },
  sds: {
    secretName: 'secretName',
  },
};

Properties

NameTypeDescription
file?IResolvable | TlsValidationContextFileTrustPropertyAn object that represents a Transport Layer Security (TLS) validation context trust for a local file.
sds?IResolvable | TlsValidationContextSdsTrustPropertyA reference to an object that represents a listener's Transport Layer Security (TLS) Secret Discovery Service validation context trust.

file?

Type: IResolvable | TlsValidationContextFileTrustProperty (optional)

An object that represents a Transport Layer Security (TLS) validation context trust for a local file.


sds?

Type: IResolvable | TlsValidationContextSdsTrustProperty (optional)

A reference to an object that represents a listener's Transport Layer Security (TLS) Secret Discovery Service validation context trust.