Class: Aws::GlobalAccelerator::Types::SocketAddress
- Inherits:
-
Struct
- Object
- Struct
- Aws::GlobalAccelerator::Types::SocketAddress
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-globalaccelerator/types.rb
Overview
An IP address/port combination.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#ip_address ⇒ String
The IP address for the socket address.
-
#port ⇒ Integer
The port for the socket address.
Instance Attribute Details
#ip_address ⇒ String
The IP address for the socket address.
3165 3166 3167 3168 3169 3170 |
# File 'lib/aws-sdk-globalaccelerator/types.rb', line 3165 class SocketAddress < Struct.new( :ip_address, :port) SENSITIVE = [] include Aws::Structure end |
#port ⇒ Integer
The port for the socket address.
3165 3166 3167 3168 3169 3170 |
# File 'lib/aws-sdk-globalaccelerator/types.rb', line 3165 class SocketAddress < Struct.new( :ip_address, :port) SENSITIVE = [] include Aws::Structure end |