interface MeshProps
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.AppMesh.MeshProps | 
  Java | software.amazon.awscdk.services.appmesh.MeshProps | 
  Python | aws_cdk.aws_appmesh.MeshProps | 
  TypeScript (source) | @aws-cdk/aws-appmesh » MeshProps | 
The set of properties used when creating a Mesh.
Example
const mesh = new appmesh.Mesh(this, 'AppMesh', {
  meshName: 'myAwsMesh',
  egressFilter: appmesh.MeshFilterType.ALLOW_ALL,
});
Properties
| Name | Type | Description | 
|---|---|---|
| egress | Mesh | Egress filter to be applied to the Mesh. | 
| mesh | string | The name of the Mesh being defined. | 
egressFilter?
Type:
Mesh
(optional, default: DROP_ALL)
Egress filter to be applied to the Mesh.
meshName?
Type:
string
(optional, default: A name is automatically generated)
The name of the Mesh being defined.

 .NET
 Java
 Python
 TypeScript (