[][src]Struct rusoto_ec2::TrafficMirrorFilter

pub struct TrafficMirrorFilter {
    pub description: Option<String>,
    pub egress_filter_rules: Option<Vec<TrafficMirrorFilterRule>>,
    pub ingress_filter_rules: Option<Vec<TrafficMirrorFilterRule>>,
    pub network_services: Option<Vec<String>>,
    pub tags: Option<Vec<Tag>>,
    pub traffic_mirror_filter_id: Option<String>,
}

Describes the Traffic Mirror filter.

Fields

description: Option<String>

The description of the Traffic Mirror filter.

egress_filter_rules: Option<Vec<TrafficMirrorFilterRule>>

Information about the egress rules that are associated with the Traffic Mirror filter.

ingress_filter_rules: Option<Vec<TrafficMirrorFilterRule>>

Information about the ingress rules that are associated with the Traffic Mirror filter.

network_services: Option<Vec<String>>

The network service traffic that is associated with the Traffic Mirror filter.

tags: Option<Vec<Tag>>

The tags assigned to the Traffic Mirror filter.

traffic_mirror_filter_id: Option<String>

The ID of the Traffic Mirror filter.

Trait Implementations

impl Clone for TrafficMirrorFilter[src]

impl Debug for TrafficMirrorFilter[src]

impl Default for TrafficMirrorFilter[src]

impl PartialEq<TrafficMirrorFilter> for TrafficMirrorFilter[src]

impl StructuralPartialEq for TrafficMirrorFilter[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.