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)


2936
2937
2938
2939
2940
2941
# File 'lib/aws-sdk-groundstation/types.rb', line 2936

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

#port_rangeTypes::IntegerRange

Port range of a socket address.

Returns:



2936
2937
2938
2939
2940
2941
# File 'lib/aws-sdk-groundstation/types.rb', line 2936

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