interface TlsValidationContextFileTrustProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppMesh.Mixins.CfnVirtualNodePropsMixin.TlsValidationContextFileTrustProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappmesh/mixins#CfnVirtualNodePropsMixin_TlsValidationContextFileTrustProperty |
Java | software.amazon.awscdk.mixins.preview.services.appmesh.mixins.CfnVirtualNodePropsMixin.TlsValidationContextFileTrustProperty |
Python | aws_cdk.mixins_preview.aws_appmesh.mixins.CfnVirtualNodePropsMixin.TlsValidationContextFileTrustProperty |
TypeScript | @aws-cdk/mixins-preview » aws_appmesh » mixins » CfnVirtualNodePropsMixin » TlsValidationContextFileTrustProperty |
An object that represents a Transport Layer Security (TLS) validation context trust for a local file.
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 tlsValidationContextFileTrustProperty: appmesh_mixins.CfnVirtualNodePropsMixin.TlsValidationContextFileTrustProperty = {
certificateChain: 'certificateChain',
};
Properties
| Name | Type | Description |
|---|---|---|
| certificate | string | The certificate trust chain for a certificate stored on the file system of the virtual node that the proxy is running on. |
certificateChain?
Type:
string
(optional)
The certificate trust chain for a certificate stored on the file system of the virtual node that the proxy is running on.

.NET
Go
Java
Python
TypeScript