aws-cdk-lib.aws_appmesh.CfnVirtualNode.TlsValidationContextTrustProperty

interface TlsValidationContextTrustProperty

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

An object that represents a 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 tlsValidationContextTrustProperty: appmesh.CfnVirtualNode.TlsValidationContextTrustProperty = {
  acm: {
    certificateAuthorityArns: ['certificateAuthorityArns'],
  },
  file: {
    certificateChain: 'certificateChain',
  },
  sds: {
    secretName: 'secretName',
  },
};

Properties

NameTypeDescription
acm?IResolvable | TlsValidationContextAcmTrustPropertyA reference to an object that represents a Transport Layer Security (TLS) validation context trust for an AWS Certificate Manager certificate.
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 Transport Layer Security (TLS) Secret Discovery Service validation context trust.

acm?

Type: IResolvable | TlsValidationContextAcmTrustProperty (optional)

A reference to an object that represents a Transport Layer Security (TLS) validation context trust for an AWS Certificate Manager certificate.


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 Transport Layer Security (TLS) Secret Discovery Service validation context trust.