pub struct EgressFilter {
pub type_: String,
}
Expand description
An object that represents the egress filter rules for a service mesh.
Fields§
§type_: String
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.
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 Default for EgressFilter
impl Default for EgressFilter
Source§fn default() -> EgressFilter
fn default() -> EgressFilter
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EgressFilter
impl<'de> Deserialize<'de> for EgressFilter
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for EgressFilter
impl PartialEq for EgressFilter
Source§impl Serialize for EgressFilter
impl Serialize for EgressFilter
impl StructuralPartialEq for EgressFilter
Auto Trait Implementations§
impl Freeze for EgressFilter
impl RefUnwindSafe for EgressFilter
impl Send for EgressFilter
impl Sync for EgressFilter
impl Unpin for EgressFilter
impl UnwindSafe for EgressFilter
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more