Class: Aws::Lightsail::Types::InstancePortState

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

Overview

Describes the port state.

Instance Attribute Summary collapse

Instance Attribute Details

#from_portInteger

The first port in the range.

Returns:

  • (Integer)


5272
5273
5274
5275
5276
5277
5278
# File 'lib/aws-sdk-lightsail/types.rb', line 5272

class InstancePortState < Struct.new(
  :from_port,
  :to_port,
  :protocol,
  :state)
  include Aws::Structure
end

#protocolString

The protocol being used. Can be one of the following.

  • ‘tcp` - Transmission Control Protocol (TCP) provides reliable, ordered, and error-checked delivery of streamed data between applications running on hosts communicating by an IP network. If you have an application that doesn’t require reliable data stream service, use UDP instead.

  • ‘all` - All transport layer protocol types. For more general information, see [Transport layer] on Wikipedia.

  • ‘udp` - With User Datagram Protocol (UDP), computer applications can send messages (or datagrams) to other hosts on an Internet Protocol (IP) network. Prior communications are not required to set up transmission channels or data paths. Applications that don’t require reliable data stream service can use UDP, which provides a connectionless datagram service that emphasizes reduced latency over reliability. If you do require reliable data stream service, use TCP instead.

[1]: en.wikipedia.org/wiki/Transport_layer

Returns:

  • (String)


5272
5273
5274
5275
5276
5277
5278
# File 'lib/aws-sdk-lightsail/types.rb', line 5272

class InstancePortState < Struct.new(
  :from_port,
  :to_port,
  :protocol,
  :state)
  include Aws::Structure
end

#stateString

Specifies whether the instance port is ‘open` or `closed`.

Returns:

  • (String)


5272
5273
5274
5275
5276
5277
5278
# File 'lib/aws-sdk-lightsail/types.rb', line 5272

class InstancePortState < Struct.new(
  :from_port,
  :to_port,
  :protocol,
  :state)
  include Aws::Structure
end

#to_portInteger

The last port in the range.

Returns:

  • (Integer)


5272
5273
5274
5275
5276
5277
5278
# File 'lib/aws-sdk-lightsail/types.rb', line 5272

class InstancePortState < Struct.new(
  :from_port,
  :to_port,
  :protocol,
  :state)
  include Aws::Structure
end