Class: Aws::GroundStation::Types::RangedSocketAddress

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

Overview

A socket address with a port range.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

IPv4 socket address.

Returns:

  • (String)


2339
2340
2341
2342
2343
2344
# File 'lib/aws-sdk-groundstation/types.rb', line 2339

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

#port_rangeTypes::IntegerRange

Port range of a socket address.

Returns:



2339
2340
2341
2342
2343
2344
# File 'lib/aws-sdk-groundstation/types.rb', line 2339

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