Struct rusoto_ec2::NetworkAclEntry [] [src]

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 Default for NetworkAclEntry
[src]

[src]

Returns the "default value" for a type. Read more

impl Debug for NetworkAclEntry
[src]

[src]

Formats the value using the given formatter.

impl Clone for NetworkAclEntry
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more