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

AnalysisAclRule

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

Describes a network access control (ACL) rule.

interface AnalysisAclRule {
Cidr?: string | null;
Egress?: boolean | null;
PortRange?: PortRange | null;
Protocol?: string | null;
RuleAction?: string | null;
RuleNumber?: number | null;
}

§Properties

§
Cidr?: string | null
[src]

The IPv4 address range, in CIDR notation.

§
Egress?: boolean | null
[src]

Indicates whether the rule is an outbound rule.

§
PortRange?: PortRange | null
[src]

The range of ports.

§
Protocol?: string | null
[src]

The protocol.

§
RuleAction?: string | null
[src]

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

§
RuleNumber?: number | null
[src]

The rule number.