[][src]Struct rusoto_ec2::TrafficMirrorFilterRule

pub struct TrafficMirrorFilterRule {
    pub description: Option<String>,
    pub destination_cidr_block: Option<String>,
    pub destination_port_range: Option<TrafficMirrorPortRange>,
    pub protocol: Option<i64>,
    pub rule_action: Option<String>,
    pub rule_number: Option<i64>,
    pub source_cidr_block: Option<String>,
    pub source_port_range: Option<TrafficMirrorPortRange>,
    pub traffic_direction: Option<String>,
    pub traffic_mirror_filter_id: Option<String>,
    pub traffic_mirror_filter_rule_id: Option<String>,
}

Describes the Traffic Mirror rule.

Fields

description: Option<String>

The description of the Traffic Mirror rule.

destination_cidr_block: Option<String>

The destination CIDR block assigned to the Traffic Mirror rule.

destination_port_range: Option<TrafficMirrorPortRange>

The destination port range assigned to the Traffic Mirror rule.

protocol: Option<i64>

The protocol assigned to the Traffic Mirror rule.

rule_action: Option<String>

The action assigned to the Traffic Mirror rule.

rule_number: Option<i64>

The rule number of the Traffic Mirror rule.

source_cidr_block: Option<String>

The source CIDR block assigned to the Traffic Mirror rule.

source_port_range: Option<TrafficMirrorPortRange>

The source port range assigned to the Traffic Mirror rule.

traffic_direction: Option<String>

The traffic direction assigned to the Traffic Mirror rule.

traffic_mirror_filter_id: Option<String>

The ID of the Traffic Mirror filter that the rule is associated with.

traffic_mirror_filter_rule_id: Option<String>

The ID of the Traffic Mirror rule.

Trait Implementations

impl Clone for TrafficMirrorFilterRule[src]

impl Debug for TrafficMirrorFilterRule[src]

impl Default for TrafficMirrorFilterRule[src]

impl PartialEq<TrafficMirrorFilterRule> for TrafficMirrorFilterRule[src]

impl StructuralPartialEq for TrafficMirrorFilterRule[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.