PortRangeArgs

data class PortRangeArgs(val maxPort: Output<Int>? = null, val minPort: Output<Int>? = null) : ConvertibleToJava<PortRangeArgs>

Range of port numbers to use as translated ports on each translated address. If not specified and NAPT is enabled, this range defaults to 1,024 - 49,999. (Ports under 1,024 should not be used because these are special purpose ports reserved by IANA. Ports 50,000 and above are reserved for non-NAPT use.)

Constructors

Link copied to clipboard
constructor(maxPort: Output<Int>? = null, minPort: Output<Int>? = null)

Properties

Link copied to clipboard
val maxPort: Output<Int>? = null

The maximum port number

Link copied to clipboard
val minPort: Output<Int>? = null

The minimum port number

Functions

Link copied to clipboard
open override fun toJava(): PortRangeArgs