Show / Hide Table of Contents

Interface CfnMesh.IEgressFilterProperty

An object that represents the egress filter rules for a service mesh.

Namespace: Amazon.CDK.AWS.AppMesh
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnMesh.IEgressFilterProperty
Syntax (vb)
Public Interface CfnMesh.IEgressFilterProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-mesh-egressfilter.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.AppMesh;

             var egressFilterProperty = new EgressFilterProperty {
                 Type = "type"
             };

Synopsis

Properties

Type

The egress filter type.

Properties

Type

The egress filter type.

string Type { get; }
Property Value

string

Remarks

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 <code>ALLOW_ALL</code> , you must specifiy all egress for that virtual node as backends. Otherwise, <code>ALLOW_ALL</code> will no longer work for that virtual node.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-mesh-egressfilter.html#cfn-appmesh-mesh-egressfilter-type

Back to top Generated by DocFX