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

AnalysisSecurityGroupRule

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

Describes a security group rule.

interface AnalysisSecurityGroupRule {
Cidr?: string | null;
Direction?: string | null;
PortRange?: PortRange | null;
PrefixListId?: string | null;
Protocol?: string | null;
SecurityGroupId?: string | null;
}

§Properties

§
Cidr?: string | null
[src]

The IPv4 address range, in CIDR notation.

§
Direction?: string | null
[src]

The direction. The following are possible values:

  • egress
  • ingress
§
PortRange?: PortRange | null
[src]

The port range.

§
PrefixListId?: string | null
[src]

The prefix list ID.

§
Protocol?: string | null
[src]

The protocol name.

§
SecurityGroupId?: string | null
[src]

The security group ID.