Enum MeshFilterType
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.
Namespace: Amazon.CDK.AWS.AppMesh
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public enum MeshFilterType
Syntax (vb)
Public Enum MeshFilterType
Remarks
Default: DROP_ALL
ExampleMetadata: infused
Examples
var mesh = new Mesh(this, "AppMesh", new MeshProps {
MeshName = "myAwsMesh",
EgressFilter = MeshFilterType.ALLOW_ALL
});
Synopsis
Fields
| ALLOW_ALL | Allows all outbound traffic. |
| DROP_ALL | Allows traffic only to other resources inside the mesh, or API calls to amazon resources. |
Fields
| Name | Description |
|---|---|
| ALLOW_ALL | Allows all outbound traffic. |
| DROP_ALL | Allows traffic only to other resources inside the mesh, or API calls to amazon resources. |