[][src]Struct rusoto_ec2::NetworkAclEntry

pub struct NetworkAclEntry {
    pub cidr_block: Option<String>,
    pub egress: Option<bool>,
    pub icmp_type_code: Option<IcmpTypeCode>,
    pub ipv_6_cidr_block: Option<String>,
    pub port_range: Option<PortRange>,
    pub protocol: Option<String>,
    pub rule_action: Option<String>,
    pub rule_number: Option<i64>,
}

Describes an entry in a network ACL.

Fields

The IPv4 network range to allow or deny, in CIDR notation.

Indicates whether the rule is an egress rule (applied to traffic leaving the subnet).

ICMP protocol: The ICMP type and code.

The IPv6 network range to allow or deny, in CIDR notation.

TCP or UDP protocols: The range of ports the rule applies to.

The protocol. A value of -1 means all protocols.

Indicates whether to allow or deny the traffic that matches the rule.

The rule number for the entry. ACL entries are processed in ascending order by rule number.

Trait Implementations

impl Clone for NetworkAclEntry
[src]

Performs copy-assignment from source. Read more

impl Default for NetworkAclEntry
[src]

impl PartialEq<NetworkAclEntry> for NetworkAclEntry
[src]

impl Debug for NetworkAclEntry
[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

impl<T> Same for T

Should always be Self

impl<T> Erased for T