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

IpPermission

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

A range of IP addresses and port settings that allow inbound traffic to connect to server processes on an instance in a fleet. New game sessions are assigned an IP address/port number combination, which must fall into the fleet's allowed ranges. Fleets with custom game builds must have permissions explicitly set. For Realtime Servers fleets, GameLift automatically opens two port ranges, one for TCP messaging and one for UDP.

Related actions

"DescribeFleetPortSettings"

interface IpPermission {
FromPort: number;
IpRange: string;
Protocol: IpProtocol;
ToPort: number;
}

§Properties

§
FromPort: number
[src]

A starting value for a range of allowed port numbers.

§
IpRange: string
[src]

A range of allowed IP addresses. This value must be expressed in CIDR notation. Example: "000.000.000.000/[subnet mask]" or optionally the shortened version "0.0.0.0/[subnet mask]".

§
Protocol: IpProtocol
[src]

The network communication protocol used by the fleet.

§
ToPort: number
[src]

An ending value for a range of allowed port numbers. Port numbers are end-inclusive. This value must be higher than FromPort.