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

StaleIpPermission

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

Describes a stale rule in a security group.

interface StaleIpPermission {
FromPort?: number | null;
IpProtocol?: string | null;
IpRanges: string[];
PrefixListIds: string[];
ToPort?: number | null;
UserIdGroupPairs: UserIdGroupPair[];
}

§Properties

§
FromPort?: number | null
[src]

The start of the port range for the TCP and UDP protocols, or an ICMP type number. A value of -1 indicates all ICMP types.

§
IpProtocol?: string | null
[src]

The IP protocol name (for tcp, udp, and icmp) or number (see Protocol Numbers).

§
IpRanges: string[]
[src]

The IP ranges. Not applicable for stale security group rules.

§
PrefixListIds: string[]
[src]

The prefix list IDs. Not applicable for stale security group rules.

§
ToPort?: number | null
[src]

The end of the port range for the TCP and UDP protocols, or an ICMP type number. A value of -1 indicates all ICMP types.

§
UserIdGroupPairs: UserIdGroupPair[]
[src]

The security group pairs. Returns the ID of the referenced security group and VPC, and the ID and status of the VPC peering connection.