interface VirtualGatewayBackendDefaultsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppMesh.Mixins.CfnVirtualGatewayPropsMixin.VirtualGatewayBackendDefaultsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappmesh/mixins#CfnVirtualGatewayPropsMixin_VirtualGatewayBackendDefaultsProperty |
Java | software.amazon.awscdk.mixins.preview.services.appmesh.mixins.CfnVirtualGatewayPropsMixin.VirtualGatewayBackendDefaultsProperty |
Python | aws_cdk.mixins_preview.aws_appmesh.mixins.CfnVirtualGatewayPropsMixin.VirtualGatewayBackendDefaultsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_appmesh » mixins » CfnVirtualGatewayPropsMixin » VirtualGatewayBackendDefaultsProperty |
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 { mixins as appmesh_mixins } from '@aws-cdk/mixins-preview/aws-appmesh';
const virtualGatewayBackendDefaultsProperty: appmesh_mixins.CfnVirtualGatewayPropsMixin.VirtualGatewayBackendDefaultsProperty = {
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 | Virtual | A reference to an object that represents a client policy. |
clientPolicy?
Type:
IResolvable | Virtual
(optional)
A reference to an object that represents a client policy.

.NET
Go
Java
Python
TypeScript