Class: Aws::AppMesh::Types::EgressFilter

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-appmesh/types.rb

Overview

Note:

When making an API call, you may pass EgressFilter data as a hash:

{
  type: "ALLOW_ALL", # required, accepts ALLOW_ALL, DROP_ALL
}

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

Instance Attribute Summary collapse

Instance Attribute Details

#typeString

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.

Returns:

  • (String)


866
867
868
869
# File 'lib/aws-sdk-appmesh/types.rb', line 866

class EgressFilter < Struct.new(
  :type)
  include Aws::Structure
end