interface BackendProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AppMesh.CfnVirtualNodePropsMixin.BackendProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsappmesh#CfnVirtualNodePropsMixin_BackendProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.appmesh.CfnVirtualNodePropsMixin.BackendProperty |
Python | aws_cdk.cfn_property_mixins.aws_appmesh.CfnVirtualNodePropsMixin.BackendProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_appmesh » CfnVirtualNodePropsMixin » BackendProperty |
An object that represents the backends that a virtual node is expected to send outbound traffic to.
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 backendProperty: appmesh.CfnVirtualNodePropsMixin.BackendProperty = {
virtualService: {
clientPolicy: {
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',
},
},
},
},
},
virtualServiceName: 'virtualServiceName',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| virtual | IResolvable | Virtual | Specifies a virtual service to use as a backend. |
virtualService?
Type:
IResolvable | Virtual
(optional)
Specifies a virtual service to use as a backend.

.NET
Go
Java
Python
TypeScript