interface BackendDefaultsProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.AppMesh.CfnVirtualNode.BackendDefaultsProperty |
![]() | software.amazon.awscdk.services.appmesh.CfnVirtualNode.BackendDefaultsProperty |
![]() | aws_cdk.aws_appmesh.CfnVirtualNode.BackendDefaultsProperty |
![]() | @aws-cdk/aws-appmesh » CfnVirtualNode » 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 * as appmesh from '@aws-cdk/aws-appmesh';
const backendDefaultsProperty: appmesh.CfnVirtualNode.BackendDefaultsProperty = {
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 |
---|---|---|
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.