aws-cdk-lib.aws_appmesh.TlsCertificateConfig

interface TlsCertificateConfig

LanguageType name
.NETAmazon.CDK.AWS.AppMesh.TlsCertificateConfig
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsappmesh#TlsCertificateConfig
Javasoftware.amazon.awscdk.services.appmesh.TlsCertificateConfig
Pythonaws_cdk.aws_appmesh.TlsCertificateConfig
TypeScript (source)aws-cdk-lib » aws_appmesh » TlsCertificateConfig

Obtainable from TlsCertificate.bind()

A wrapper for the tls config returned by TlsCertificate.bind.

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 tlsCertificateConfig: appmesh.TlsCertificateConfig = {
  tlsCertificate: {
    acm: {
      certificateArn: 'certificateArn',
    },
    file: {
      certificateChain: 'certificateChain',
      privateKey: 'privateKey',
    },
    sds: {
      secretName: 'secretName',
    },
  },
};

Properties

NameTypeDescription
tlsCertificateListenerTlsCertificatePropertyThe CFN shape for a TLS certificate.

tlsCertificate

Type: ListenerTlsCertificateProperty

The CFN shape for a TLS certificate.