interface VirtualGatewayClientTlsCertificateProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppMesh.Mixins.CfnVirtualGatewayPropsMixin.VirtualGatewayClientTlsCertificateProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappmesh/mixins#CfnVirtualGatewayPropsMixin_VirtualGatewayClientTlsCertificateProperty |
Java | software.amazon.awscdk.mixins.preview.services.appmesh.mixins.CfnVirtualGatewayPropsMixin.VirtualGatewayClientTlsCertificateProperty |
Python | aws_cdk.mixins_preview.aws_appmesh.mixins.CfnVirtualGatewayPropsMixin.VirtualGatewayClientTlsCertificateProperty |
TypeScript | @aws-cdk/mixins-preview » aws_appmesh » mixins » CfnVirtualGatewayPropsMixin » VirtualGatewayClientTlsCertificateProperty |
An object that represents the virtual gateway's client's Transport Layer Security (TLS) certificate.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as appmesh_mixins } from '@aws-cdk/mixins-preview/aws-appmesh';
const virtualGatewayClientTlsCertificateProperty: appmesh_mixins.CfnVirtualGatewayPropsMixin.VirtualGatewayClientTlsCertificateProperty = {
file: {
certificateChain: 'certificateChain',
privateKey: 'privateKey',
},
sds: {
secretName: 'secretName',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| file? | IResolvable | Virtual | An object that represents a local file certificate. |
| sds? | IResolvable | Virtual | A reference to an object that represents a virtual gateway's client's Secret Discovery Service certificate. |
file?
Type:
IResolvable | Virtual
(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 | Virtual
(optional)
A reference to an object that represents a virtual gateway's client's Secret Discovery Service certificate.

.NET
Go
Java
Python
TypeScript