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.
7447 7448 7449 7450 7451 7452 |
# File 'lib/aws-sdk-eks/types.rb', line 7447 class PortRangeConstraints < Struct.new( :min_port, :max_port) SENSITIVE = [] include Aws::Structure end |
#min_port ⇒ Types::IntegerRangeConstraint
The constraints for the minimum port value.
7447 7448 7449 7450 7451 7452 |
# File 'lib/aws-sdk-eks/types.rb', line 7447 class PortRangeConstraints < Struct.new( :min_port, :max_port) SENSITIVE = [] include Aws::Structure end |