interface VirtualGatewayTlsValidationContextProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.AppMesh.CfnVirtualGateway.VirtualGatewayTlsValidationContextProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsappmesh#CfnVirtualGateway_VirtualGatewayTlsValidationContextProperty |
![]() | software.amazon.awscdk.services.appmesh.CfnVirtualGateway.VirtualGatewayTlsValidationContextProperty |
![]() | aws_cdk.aws_appmesh.CfnVirtualGateway.VirtualGatewayTlsValidationContextProperty |
![]() | 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
Name | Type | Description |
---|---|---|
trust | IResolvable | Virtual | A reference to where to retrieve the trust chain when validating a peer’s Transport Layer Security (TLS) certificate. |
subject | IResolvable | Subject | A reference to an object that represents the SANs for a virtual gateway's listener's Transport Layer Security (TLS) validation context. |
trust
Type:
IResolvable
|
Virtual
A reference to where to retrieve the trust chain when validating a peer’s Transport Layer Security (TLS) certificate.
subjectAlternativeNames?
Type:
IResolvable
|
Subject
(optional)
A reference to an object that represents the SANs for a virtual gateway's listener's Transport Layer Security (TLS) validation context.