interface ClientTlsCertificateProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AppMesh.CfnVirtualNodePropsMixin.ClientTlsCertificateProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsappmesh#CfnVirtualNodePropsMixin_ClientTlsCertificateProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.appmesh.CfnVirtualNodePropsMixin.ClientTlsCertificateProperty |
Python | aws_cdk.cfn_property_mixins.aws_appmesh.CfnVirtualNodePropsMixin.ClientTlsCertificateProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_appmesh » CfnVirtualNodePropsMixin » 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/cfn-property-mixins';
const clientTlsCertificateProperty: appmesh.CfnVirtualNodePropsMixin.ClientTlsCertificateProperty = {
file: {
certificateChain: 'certificateChain',
privateKey: 'privateKey',
},
sds: {
secretName: 'secretName',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| file? | IResolvable | Listener | An object that represents a local file certificate. |
| sds? | IResolvable | Listener | A reference to an object that represents a client's TLS Secret Discovery Service certificate. |
file?
Type:
IResolvable | Listener
(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 | Listener
(optional)
A reference to an object that represents a client's TLS Secret Discovery Service certificate.

.NET
Go
Java
Python
TypeScript