Struct aws_sdk_ec2::model::TrafficMirrorFilter
source · [−]#[non_exhaustive]pub struct TrafficMirrorFilter {
pub traffic_mirror_filter_id: Option<String>,
pub ingress_filter_rules: Option<Vec<TrafficMirrorFilterRule>>,
pub egress_filter_rules: Option<Vec<TrafficMirrorFilterRule>>,
pub network_services: Option<Vec<TrafficMirrorNetworkService>>,
pub description: Option<String>,
pub tags: Option<Vec<Tag>>,
}
Expand description
Describes the Traffic Mirror filter.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.traffic_mirror_filter_id: Option<String>
The ID of the Traffic Mirror filter.
ingress_filter_rules: Option<Vec<TrafficMirrorFilterRule>>
Information about the ingress rules that are associated with the Traffic Mirror filter.
egress_filter_rules: Option<Vec<TrafficMirrorFilterRule>>
Information about the egress rules that are associated with the Traffic Mirror filter.
network_services: Option<Vec<TrafficMirrorNetworkService>>
The network service traffic that is associated with the Traffic Mirror filter.
description: Option<String>
The description of the Traffic Mirror filter.
The tags assigned to the Traffic Mirror filter.
Implementations
sourceimpl TrafficMirrorFilter
impl TrafficMirrorFilter
sourcepub fn traffic_mirror_filter_id(&self) -> Option<&str>
pub fn traffic_mirror_filter_id(&self) -> Option<&str>
The ID of the Traffic Mirror filter.
sourcepub fn ingress_filter_rules(&self) -> Option<&[TrafficMirrorFilterRule]>
pub fn ingress_filter_rules(&self) -> Option<&[TrafficMirrorFilterRule]>
Information about the ingress rules that are associated with the Traffic Mirror filter.
sourcepub fn egress_filter_rules(&self) -> Option<&[TrafficMirrorFilterRule]>
pub fn egress_filter_rules(&self) -> Option<&[TrafficMirrorFilterRule]>
Information about the egress rules that are associated with the Traffic Mirror filter.
sourcepub fn network_services(&self) -> Option<&[TrafficMirrorNetworkService]>
pub fn network_services(&self) -> Option<&[TrafficMirrorNetworkService]>
The network service traffic that is associated with the Traffic Mirror filter.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the Traffic Mirror filter.
The tags assigned to the Traffic Mirror filter.
sourceimpl TrafficMirrorFilter
impl TrafficMirrorFilter
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture TrafficMirrorFilter
.
Trait Implementations
sourceimpl Clone for TrafficMirrorFilter
impl Clone for TrafficMirrorFilter
sourcefn clone(&self) -> TrafficMirrorFilter
fn clone(&self) -> TrafficMirrorFilter
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for TrafficMirrorFilter
impl Debug for TrafficMirrorFilter
sourceimpl PartialEq<TrafficMirrorFilter> for TrafficMirrorFilter
impl PartialEq<TrafficMirrorFilter> for TrafficMirrorFilter
sourcefn eq(&self, other: &TrafficMirrorFilter) -> bool
fn eq(&self, other: &TrafficMirrorFilter) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &TrafficMirrorFilter) -> bool
fn ne(&self, other: &TrafficMirrorFilter) -> bool
This method tests for !=
.
impl StructuralPartialEq for TrafficMirrorFilter
Auto Trait Implementations
impl RefUnwindSafe for TrafficMirrorFilter
impl Send for TrafficMirrorFilter
impl Sync for TrafficMirrorFilter
impl Unpin for TrafficMirrorFilter
impl UnwindSafe for TrafficMirrorFilter
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more