aws-cdk-lib.aws_appmesh.CfnVirtualNode.ClientTlsCertificateProperty

interface ClientTlsCertificateProperty

LanguageType name
.NETAmazon.CDK.AWS.AppMesh.CfnVirtualNode.ClientTlsCertificateProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsappmesh#CfnVirtualNode_ClientTlsCertificateProperty
Javasoftware.amazon.awscdk.services.appmesh.CfnVirtualNode.ClientTlsCertificateProperty
Pythonaws_cdk.aws_appmesh.CfnVirtualNode.ClientTlsCertificateProperty
TypeScript aws-cdk-lib » aws_appmesh » CfnVirtualNode » ClientTlsCertificateProperty

An object that represents the client's certificate.

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-lib';
const clientTlsCertificateProperty: appmesh.CfnVirtualNode.ClientTlsCertificateProperty = {
  file: {
    certificateChain: 'certificateChain',
    privateKey: 'privateKey',
  },
  sds: {
    secretName: 'secretName',
  },
};

Properties

NameTypeDescription
file?IResolvable | ListenerTlsFileCertificatePropertyAn object that represents a local file certificate.
sds?IResolvable | ListenerTlsSdsCertificatePropertyA reference to an object that represents a client's TLS Secret Discovery Service certificate.

file?

Type: IResolvable | ListenerTlsFileCertificateProperty (optional)

An object that represents a local file certificate.

The certificate must meet specific requirements and you must have proxy authorization enabled. For more information, see Transport Layer Security (TLS) .


sds?

Type: IResolvable | ListenerTlsSdsCertificateProperty (optional)

A reference to an object that represents a client's TLS Secret Discovery Service certificate.