interface EgressFilterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppMesh.Mixins.CfnMeshPropsMixin.EgressFilterProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappmesh/mixins#CfnMeshPropsMixin_EgressFilterProperty |
Java | software.amazon.awscdk.mixins.preview.services.appmesh.mixins.CfnMeshPropsMixin.EgressFilterProperty |
Python | aws_cdk.mixins_preview.aws_appmesh.mixins.CfnMeshPropsMixin.EgressFilterProperty |
TypeScript | @aws-cdk/mixins-preview » aws_appmesh » mixins » CfnMeshPropsMixin » EgressFilterProperty |
An object that represents the egress filter rules for a service mesh.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as appmesh_mixins } from '@aws-cdk/mixins-preview/aws-appmesh';
const egressFilterProperty: appmesh_mixins.CfnMeshPropsMixin.EgressFilterProperty = {
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| type? | string | The egress filter type. |
type?
Type:
string
(optional)
The egress filter type.
By default, the type is DROP_ALL , which allows egress only from virtual nodes to other defined resources in the service mesh (and any traffic to *.amazonaws.com for AWS API calls). You can set the egress filter type to ALLOW_ALL to allow egress to any endpoint inside or outside of the service mesh.
If you specify any backends on a virtual node when using
ALLOW_ALL, you must specifiy all egress for that virtual node as backends. Otherwise,ALLOW_ALLwill no longer work for that virtual node.

.NET
Go
Java
Python
TypeScript