interface MeshSpecProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AppMesh.CfnMesh.MeshSpecProperty |
Java | software.amazon.awscdk.services.appmesh.CfnMesh.MeshSpecProperty |
Python | aws_cdk.aws_appmesh.CfnMesh.MeshSpecProperty |
TypeScript | @aws-cdk/aws-appmesh » CfnMesh » MeshSpecProperty |
An object that represents the specification of a service mesh.
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 meshSpecProperty: appmesh.CfnMesh.MeshSpecProperty = {
egressFilter: {
type: 'type',
},
serviceDiscovery: {
ipPreference: 'ipPreference',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| egress | IResolvable | Egress | The egress filter rules for the service mesh. |
| service | IResolvable | Mesh | CfnMesh.MeshSpecProperty.ServiceDiscovery. |
egressFilter?
Type:
IResolvable | Egress
(optional)
The egress filter rules for the service mesh.
serviceDiscovery?
Type:
IResolvable | Mesh
(optional)
CfnMesh.MeshSpecProperty.ServiceDiscovery.

.NET
Java
Python
TypeScript