interface VirtualGatewayTlsValidationContextProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AppMesh.CfnVirtualGatewayPropsMixin.VirtualGatewayTlsValidationContextProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsappmesh#CfnVirtualGatewayPropsMixin_VirtualGatewayTlsValidationContextProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.appmesh.CfnVirtualGatewayPropsMixin.VirtualGatewayTlsValidationContextProperty |
Python | aws_cdk.cfn_property_mixins.aws_appmesh.CfnVirtualGatewayPropsMixin.VirtualGatewayTlsValidationContextProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_appmesh » CfnVirtualGatewayPropsMixin » 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/cfn-property-mixins';
const virtualGatewayTlsValidationContextProperty: appmesh.CfnVirtualGatewayPropsMixin.VirtualGatewayTlsValidationContextProperty = {
subjectAlternativeNames: {
match: {
exact: ['exact'],
},
},
trust: {
acm: {
certificateAuthorityArns: ['certificateAuthorityArns'],
},
file: {
certificateChain: 'certificateChain',
},
sds: {
secretName: 'secretName',
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| 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? | 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.
trust?
Type:
IResolvable | Virtual
(optional)
A reference to where to retrieve the trust chain when validating a peer’s Transport Layer Security (TLS) certificate.

.NET
Go
Java
Python
TypeScript