Class: Aws::GameLift::Types::UDPEndpoint

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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

Instance Attribute Details

#domainString

The domain name of the UDP endpoint.

Returns:

  • (String)


11332
11333
11334
11335
11336
11337
# File 'lib/aws-sdk-gamelift/types.rb', line 11332

class UDPEndpoint < Struct.new(
  :domain,
  :port)
  SENSITIVE = []
  include Aws::Structure
end

#portInteger

The port number of the UDP endpoint.

Returns:

  • (Integer)


11332
11333
11334
11335
11336
11337
# File 'lib/aws-sdk-gamelift/types.rb', line 11332

class UDPEndpoint < Struct.new(
  :domain,
  :port)
  SENSITIVE = []
  include Aws::Structure
end