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

AwsEc2NetworkAclEntry

import type { AwsEc2NetworkAclEntry } from "https://aws-api.deno.dev/v0.4/services/securityhub.ts?docs=full";

A rule for the network ACL. Each rule allows or denies access based on the IP address, traffic direction, port, and protocol.

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

§Properties

§
CidrBlock?: string | null
[src]

The IPV4 network range for which to deny or allow access.

§
Egress?: boolean | null
[src]

Whether the rule is an egress rule. An egress rule is a rule that applies to traffic that leaves the subnet.

§
IcmpTypeCode?: IcmpTypeCode | null
[src]

The Internet Control Message Protocol (ICMP) type and code for which to deny or allow access.

§
Ipv6CidrBlock?: string | null
[src]

The IPV6 network range for which to deny or allow access.

§
PortRange?: PortRangeFromTo | null
[src]

For TCP or UDP protocols, the range of ports that the rule applies to.

§
Protocol?: string | null
[src]

The protocol that the rule applies to. To deny or allow access to all protocols, use the value -1.

§
RuleAction?: string | null
[src]

Whether the rule is used to allow access or deny access.

§
RuleNumber?: number | null
[src]

The rule number. The rules are processed in order by their number.