interface TlsValidationContextSdsTrustProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppMesh.Mixins.CfnVirtualNodePropsMixin.TlsValidationContextSdsTrustProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappmesh/mixins#CfnVirtualNodePropsMixin_TlsValidationContextSdsTrustProperty |
Java | software.amazon.awscdk.mixins.preview.services.appmesh.mixins.CfnVirtualNodePropsMixin.TlsValidationContextSdsTrustProperty |
Python | aws_cdk.mixins_preview.aws_appmesh.mixins.CfnVirtualNodePropsMixin.TlsValidationContextSdsTrustProperty |
TypeScript | @aws-cdk/mixins-preview » aws_appmesh » mixins » CfnVirtualNodePropsMixin » TlsValidationContextSdsTrustProperty |
An object that represents a Transport Layer Security (TLS) Secret Discovery Service validation context trust.
The proxy must be configured with a local SDS provider via a Unix Domain Socket. See App Mesh TLS documentation for more info.
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 tlsValidationContextSdsTrustProperty: appmesh_mixins.CfnVirtualNodePropsMixin.TlsValidationContextSdsTrustProperty = {
secretName: 'secretName',
};
Properties
| Name | Type | Description |
|---|---|---|
| secret | string | A reference to an object that represents the name of the secret for a Transport Layer Security (TLS) Secret Discovery Service validation context trust. |
secretName?
Type:
string
(optional)
A reference to an object that represents the name of the secret for a Transport Layer Security (TLS) Secret Discovery Service validation context trust.

.NET
Go
Java
Python
TypeScript