interface VirtualGatewayTlsValidationContextProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppMesh.Mixins.CfnVirtualGatewayPropsMixin.VirtualGatewayTlsValidationContextProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappmesh/mixins#CfnVirtualGatewayPropsMixin_VirtualGatewayTlsValidationContextProperty |
Java | software.amazon.awscdk.mixins.preview.services.appmesh.mixins.CfnVirtualGatewayPropsMixin.VirtualGatewayTlsValidationContextProperty |
Python | aws_cdk.mixins_preview.aws_appmesh.mixins.CfnVirtualGatewayPropsMixin.VirtualGatewayTlsValidationContextProperty |
TypeScript | @aws-cdk/mixins-preview » aws_appmesh » mixins » 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 { mixins as appmesh_mixins } from '@aws-cdk/mixins-preview/aws-appmesh';
const virtualGatewayTlsValidationContextProperty: appmesh_mixins.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