Class: Aws::GameLift::Types::UDPEndpoint
- Inherits:
-
Struct
- Object
- Struct
- Aws::GameLift::Types::UDPEndpoint
- Defined in:
- gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb
Overview
The domain name and port information for a UDP endpoint.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#domain ⇒ String
The domain name of the UDP endpoint.
-
#port ⇒ Integer
The port number of the UDP endpoint.
Instance Attribute Details
#domain ⇒ String
The domain name of the UDP endpoint.
11903 11904 11905 11906 11907 11908 |
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 11903 class UDPEndpoint < Struct.new( :domain, :port) SENSITIVE = [] include Aws::Structure end |
#port ⇒ Integer
The port number of the UDP endpoint. For Amazon GameLift Servers ping beacons, this is typically port 7770.
11903 11904 11905 11906 11907 11908 |
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 11903 class UDPEndpoint < Struct.new( :domain, :port) SENSITIVE = [] include Aws::Structure end |