Class: Aws::EKS::Types::PortRangeConstraints
- Inherits:
-
Struct
- Object
- Struct
- Aws::EKS::Types::PortRangeConstraints
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-eks/types.rb
Overview
Constraints for a port range parameter.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_port ⇒ Types::IntegerRangeConstraint
The constraints for the maximum port value.
-
#min_port ⇒ Types::IntegerRangeConstraint
The constraints for the minimum port value.
Instance Attribute Details
#max_port ⇒ Types::IntegerRangeConstraint
The constraints for the maximum port value.
7896 7897 7898 7899 7900 7901 |
# File 'lib/aws-sdk-eks/types.rb', line 7896 class PortRangeConstraints < Struct.new( :min_port, :max_port) SENSITIVE = [] include Aws::Structure end |
#min_port ⇒ Types::IntegerRangeConstraint
The constraints for the minimum port value.
7896 7897 7898 7899 7900 7901 |
# File 'lib/aws-sdk-eks/types.rb', line 7896 class PortRangeConstraints < Struct.new( :min_port, :max_port) SENSITIVE = [] include Aws::Structure end |