interface TlsCertificateConfig
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.AppMesh.TlsCertificateConfig |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsappmesh#TlsCertificateConfig |
Java | software.amazon.awscdk.services.appmesh.TlsCertificateConfig |
Python | aws_cdk.aws_appmesh.TlsCertificateConfig |
TypeScript (source) | aws-cdk-lib » aws_appmesh » TlsCertificateConfig |
Obtainable from
Tls
.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
Name | Type | Description |
---|---|---|
tls | Listener | The CFN shape for a TLS certificate. |
tlsCertificate
Type:
Listener
The CFN shape for a TLS certificate.