[][src]Struct rusoto_gamelift::IpPermission

pub struct IpPermission {
    pub from_port: i64,
    pub ip_range: String,
    pub protocol: String,
    pub to_port: i64,
}

A range of IP addresses and port settings that allow inbound traffic to connect to server processes on an Amazon GameLift. New game sessions that are started on the fleet are assigned an IP address/port number combination, which must fall into the fleet's allowed ranges. For fleets created with a custom game server, the ranges reflect the server's game session assignments. For Realtime Servers fleets, Amazon GameLift automatically opens two port ranges, one for TCP messaging and one for UDP for use by the Realtime servers.

Fields

from_port: i64

Starting value for a range of allowed port numbers.

ip_range: String

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: String

Network communication protocol used by the fleet.

to_port: i64

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

Trait Implementations

impl PartialEq<IpPermission> for IpPermission[src]

impl Default for IpPermission[src]

impl Clone for IpPermission[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for IpPermission[src]

impl Serialize for IpPermission[src]

impl<'de> Deserialize<'de> for IpPermission[src]

Auto Trait Implementations

impl Send for IpPermission

impl Sync for IpPermission

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self