interface VirtualGatewayClientPolicyProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AppMesh.CfnVirtualGatewayPropsMixin.VirtualGatewayClientPolicyProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsappmesh#CfnVirtualGatewayPropsMixin_VirtualGatewayClientPolicyProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.appmesh.CfnVirtualGatewayPropsMixin.VirtualGatewayClientPolicyProperty |
Python | aws_cdk.cfn_property_mixins.aws_appmesh.CfnVirtualGatewayPropsMixin.VirtualGatewayClientPolicyProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_appmesh » CfnVirtualGatewayPropsMixin » VirtualGatewayClientPolicyProperty |
An object that represents a client policy.
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 virtualGatewayClientPolicyProperty: appmesh.CfnVirtualGatewayPropsMixin.VirtualGatewayClientPolicyProperty = {
tls: {
certificate: {
file: {
certificateChain: 'certificateChain',
privateKey: 'privateKey',
},
sds: {
secretName: 'secretName',
},
},
enforce: false,
ports: [123],
validation: {
subjectAlternativeNames: {
match: {
exact: ['exact'],
},
},
trust: {
acm: {
certificateAuthorityArns: ['certificateAuthorityArns'],
},
file: {
certificateChain: 'certificateChain',
},
sds: {
secretName: 'secretName',
},
},
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| tls? | IResolvable | Virtual | A reference to an object that represents a Transport Layer Security (TLS) client policy. |
tls?
Type:
IResolvable | Virtual
(optional)
A reference to an object that represents a Transport Layer Security (TLS) client policy.

.NET
Go
Java
Python
TypeScript