interface TlsCertificateConfig
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.AppMesh.TlsCertificateConfig |
![]() | software.amazon.awscdk.services.appmesh.TlsCertificateConfig |
![]() | aws_cdk.aws_appmesh.TlsCertificateConfig |
![]() | @aws-cdk/aws-appmesh » TlsCertificateConfig |
Obtainable from
Tls
.bind()
A wrapper for the tls config returned by {@link TlsCertificate.bind}.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as appmesh from '@aws-cdk/aws-appmesh';
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.