interface TlsValidationContextTrustProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppMesh.Mixins.CfnVirtualNodePropsMixin.TlsValidationContextTrustProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappmesh/mixins#CfnVirtualNodePropsMixin_TlsValidationContextTrustProperty |
Java | software.amazon.awscdk.mixins.preview.services.appmesh.mixins.CfnVirtualNodePropsMixin.TlsValidationContextTrustProperty |
Python | aws_cdk.mixins_preview.aws_appmesh.mixins.CfnVirtualNodePropsMixin.TlsValidationContextTrustProperty |
TypeScript | @aws-cdk/mixins-preview » aws_appmesh » mixins » CfnVirtualNodePropsMixin » TlsValidationContextTrustProperty |
An object that represents a Transport Layer Security (TLS) validation context trust.
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 tlsValidationContextTrustProperty: appmesh_mixins.CfnVirtualNodePropsMixin.TlsValidationContextTrustProperty = {
acm: {
certificateAuthorityArns: ['certificateAuthorityArns'],
},
file: {
certificateChain: 'certificateChain',
},
sds: {
secretName: 'secretName',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| acm? | IResolvable | Tls | A reference to an object that represents a Transport Layer Security (TLS) validation context trust for an Certificate Manager certificate. |
| file? | IResolvable | Tls | An object that represents a Transport Layer Security (TLS) validation context trust for a local file. |
| sds? | IResolvable | Tls | A reference to an object that represents a Transport Layer Security (TLS) Secret Discovery Service validation context trust. |
acm?
Type:
IResolvable | Tls
(optional)
A reference to an object that represents a Transport Layer Security (TLS) validation context trust for an Certificate Manager certificate.
file?
Type:
IResolvable | Tls
(optional)
An object that represents a Transport Layer Security (TLS) validation context trust for a local file.
sds?
Type:
IResolvable | Tls
(optional)
A reference to an object that represents a Transport Layer Security (TLS) Secret Discovery Service validation context trust.

.NET
Go
Java
Python
TypeScript