MeshProps
- class aws_cdk.aws_appmesh.MeshProps(*, egress_filter=None, mesh_name=None)
Bases:
object
The set of properties used when creating a Mesh.
- Parameters:
egress_filter (
Optional
[MeshFilterType
]) – Egress filter to be applied to the Mesh. Default: DROP_ALLmesh_name (
Optional
[str
]) – The name of the Mesh being defined. Default: - A name is automatically generated
- ExampleMetadata:
infused
Example:
mesh = appmesh.Mesh(self, "AppMesh", mesh_name="myAwsMesh", egress_filter=appmesh.MeshFilterType.ALLOW_ALL )
Attributes
- egress_filter
Egress filter to be applied to the Mesh.
- Default:
DROP_ALL
- mesh_name
The name of the Mesh being defined.
- Default:
A name is automatically generated