Class: Aws::GroundStation::Types::SocketAddress

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb

Overview

Information about the socket address.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

Name of a socket address.

Returns:

  • (String)


2559
2560
2561
2562
2563
2564
# File 'gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb', line 2559

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

#portInteger

Port of a socket address.

Returns:

  • (Integer)


2559
2560
2561
2562
2563
2564
# File 'gems/aws-sdk-groundstation/lib/aws-sdk-groundstation/types.rb', line 2559

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