aws-cdk-lib.aws_appmesh.CfnVirtualGateway.VirtualGatewayTlsValidationContextProperty

interface VirtualGatewayTlsValidationContextProperty

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

An object that represents a 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 virtualGatewayTlsValidationContextProperty: appmesh.CfnVirtualGateway.VirtualGatewayTlsValidationContextProperty = {
  trust: {
    acm: {
      certificateAuthorityArns: ['certificateAuthorityArns'],
    },
    file: {
      certificateChain: 'certificateChain',
    },
    sds: {
      secretName: 'secretName',
    },
  },

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

Properties

NameTypeDescription
trustIResolvable | VirtualGatewayTlsValidationContextTrustPropertyA 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 virtual gateway's listener's Transport Layer Security (TLS) validation context.

trust

Type: IResolvable | VirtualGatewayTlsValidationContextTrustProperty

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 virtual gateway's listener's Transport Layer Security (TLS) validation context.