Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

NetworkAclEntry

import type { NetworkAclEntry } from "https://aws-api.deno.dev/v0.3/services/ec2.ts?docs=full";

Describes an entry in a network ACL.

interface NetworkAclEntry {
CidrBlock?: string | null;
Egress?: boolean | null;
IcmpTypeCode?: IcmpTypeCode | null;
Ipv6CidrBlock?: string | null;
PortRange?: PortRange | null;
Protocol?: string | null;
RuleAction?: RuleAction | null;
RuleNumber?: number | null;
}

§Properties

§
CidrBlock?: string | null
[src]

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

§
Egress?: boolean | null
[src]

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

§
IcmpTypeCode?: IcmpTypeCode | null
[src]

ICMP protocol: The ICMP type and code.

§
Ipv6CidrBlock?: string | null
[src]

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

§
PortRange?: PortRange | null
[src]

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

§
Protocol?: string | null
[src]

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

§
RuleAction?: RuleAction | null
[src]

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

§
RuleNumber?: number | null
[src]

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