interface BackendProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.AppMesh.CfnVirtualNode.BackendProperty |
Java | software.amazon.awscdk.services.appmesh.CfnVirtualNode.BackendProperty |
Python | aws_cdk.aws_appmesh.CfnVirtualNode.BackendProperty |
TypeScript | @aws-cdk/aws-appmesh » CfnVirtualNode » 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 * as appmesh from '@aws-cdk/aws-appmesh';
const backendProperty: appmesh.CfnVirtualNode.BackendProperty = {
virtualService: {
virtualServiceName: 'virtualServiceName',
// the properties below are optional
clientPolicy: {
tls: {
validation: {
trust: {
acm: {
certificateAuthorityArns: ['certificateAuthorityArns'],
},
file: {
certificateChain: 'certificateChain',
},
sds: {
secretName: 'secretName',
},
},
// the properties below are optional
subjectAlternativeNames: {
match: {
exact: ['exact'],
},
},
},
// the properties below are optional
certificate: {
file: {
certificateChain: 'certificateChain',
privateKey: 'privateKey',
},
sds: {
secretName: 'secretName',
},
},
enforce: false,
ports: [123],
},
},
},
};
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.