Interface CfnFleet.IpPermissionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFleet.IpPermissionProperty.Jsii$Proxy
- Enclosing class:
CfnFleet
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.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.gamelift.*; IpPermissionProperty ipPermissionProperty = IpPermissionProperty.builder() .fromPort(123) .ipRange("ipRange") .protocol("protocol") .toPort(123) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnFleet.IpPermissionProperty
static final class
An implementation forCfnFleet.IpPermissionProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
A starting value for a range of allowed port numbers.A range of allowed IP addresses.The network communication protocol used by the fleet.An ending value for a range of allowed port numbers.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFromPort
A starting value for a range of allowed port numbers.For fleets using Linux builds, only ports
22
and1026-60000
are valid.For fleets using Windows builds, only ports
1026-60000
are valid.- See Also:
-
getIpRange
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]
".- See Also:
-
getProtocol
The network communication protocol used by the fleet.- See Also:
-
getToPort
An ending value for a range of allowed port numbers.Port numbers are end-inclusive. This value must be equal to or greater than
FromPort
.For fleets using Linux builds, only ports
22
and1026-60000
are valid.For fleets using Windows builds, only ports
1026-60000
are valid.- See Also:
-
builder
-