Struct aws_sdk_appmesh::model::EgressFilter
source · #[non_exhaustive]pub struct EgressFilter { /* private fields */ }
Expand description
An object that represents the egress filter rules for a service mesh.
Implementations§
source§impl EgressFilter
impl EgressFilter
sourcepub fn type(&self) -> Option<&EgressFilterType>
pub fn type(&self) -> Option<&EgressFilterType>
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 Amazon Web Services 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.
source§impl EgressFilter
impl EgressFilter
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture EgressFilter
.
Trait Implementations§
source§impl Clone for EgressFilter
impl Clone for EgressFilter
source§fn clone(&self) -> EgressFilter
fn clone(&self) -> EgressFilter
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for EgressFilter
impl Debug for EgressFilter
source§impl PartialEq<EgressFilter> for EgressFilter
impl PartialEq<EgressFilter> for EgressFilter
source§fn eq(&self, other: &EgressFilter) -> bool
fn eq(&self, other: &EgressFilter) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.