Class: Aws::EC2::Types::RequestFilterPortRange
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::RequestFilterPortRange
- Defined in:
- gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb
Overview
Describes a port range.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#from_port ⇒ Integer
The first port in the range.
-
#to_port ⇒ Integer
The last port in the range.
Instance Attribute Details
#from_port ⇒ Integer
The first port in the range.
61209 61210 61211 61212 61213 61214 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 61209 class RequestFilterPortRange < Struct.new( :from_port, :to_port) SENSITIVE = [] include Aws::Structure end |
#to_port ⇒ Integer
The last port in the range.
61209 61210 61211 61212 61213 61214 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 61209 class RequestFilterPortRange < Struct.new( :from_port, :to_port) SENSITIVE = [] include Aws::Structure end |