MeshFilterType

class aws_cdk.aws_appmesh.MeshFilterType(value)

Bases: Enum

A utility enum defined for the egressFilter type property, the default of DROP_ALL, allows traffic only to other resources inside the mesh, or API calls to amazon resources.

Default:

DROP_ALL

ExampleMetadata:

infused

Example:

mesh = appmesh.Mesh(self, "AppMesh",
    mesh_name="myAwsMesh",
    egress_filter=appmesh.MeshFilterType.ALLOW_ALL
)

Attributes

ALLOW_ALL

Allows all outbound traffic.

DROP_ALL

Allows traffic only to other resources inside the mesh, or API calls to amazon resources.