interface BackendDefaultsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AppMesh.CfnVirtualNodePropsMixin.BackendDefaultsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsappmesh#CfnVirtualNodePropsMixin_BackendDefaultsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.appmesh.CfnVirtualNodePropsMixin.BackendDefaultsProperty |
Python | aws_cdk.cfn_property_mixins.aws_appmesh.CfnVirtualNodePropsMixin.BackendDefaultsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_appmesh » CfnVirtualNodePropsMixin » BackendDefaultsProperty |
An object that represents the default properties for a backend.
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 backendDefaultsProperty: appmesh.CfnVirtualNodePropsMixin.BackendDefaultsProperty = {
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',
},
},
},
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| client | IResolvable | Client | A reference to an object that represents a client policy. |
clientPolicy?
Type:
IResolvable | Client
(optional)
A reference to an object that represents a client policy.

.NET
Go
Java
Python
TypeScript