aws-cdk-lib.aws_appmesh.MeshFilterType

enum MeshFilterType

LanguageType name
.NETAmazon.CDK.AWS.AppMesh.MeshFilterType
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsappmesh#MeshFilterType
Javasoftware.amazon.awscdk.services.appmesh.MeshFilterType
Pythonaws_cdk.aws_appmesh.MeshFilterType
TypeScript (source)aws-cdk-lib » aws_appmesh » 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.

Example

const mesh = new appmesh.Mesh(this, 'AppMesh', {
  meshName: 'myAwsMesh',
  egressFilter: appmesh.MeshFilterType.ALLOW_ALL,
});

Members

NameDescription
ALLOW_ALLAllows all outbound traffic.
DROP_ALLAllows traffic only to other resources inside the mesh, or API calls to amazon resources.

ALLOW_ALL

Allows all outbound traffic.


DROP_ALL

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