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

SecurityGroupRuleDescription

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

Describes a set of permissions for a security group rule.

interface SecurityGroupRuleDescription {
FromPort?: number | null;
IPV4Range?: string | null;
IPV6Range?: string | null;
PrefixListId?: string | null;
Protocol?: string | null;
ToPort?: number | null;
}

§Properties

§
FromPort?: number | null
[src]

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

§
IPV4Range?: string | null
[src]

The IPv4 ranges for the security group rule.

§
IPV6Range?: string | null
[src]

The IPv6 ranges for the security group rule.

§
PrefixListId?: string | null
[src]

The ID of the prefix list for the security group rule.

§
Protocol?: string | null
[src]

The IP protocol name (tcp, udp, icmp, icmpv6) or number.

§
ToPort?: number | null
[src]

The end of the port range for the TCP and UDP protocols, or an ICMP/ICMPv6 code. A value of -1 indicates all ICMP/ICMPv6 codes.