PortReuseHoldTimesArgs

data class PortReuseHoldTimesArgs(val tcp: Output<Int>? = null, val udp: Output<Int>? = null) : ConvertibleToJava<PortReuseHoldTimesArgs>

The minimum time (in seconds) that will pass before a port that was used by a closed pinhole can be recycled for use by another pinhole. All hold times must be minimum 1 second.

Constructors

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

Properties

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

Minimum time in seconds that will pass before a TCP port that was used by a closed pinhole can be reused. Default for TCP is 2 minutes.

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

Minimum time in seconds that will pass before a UDP port that was used by a closed pinhole can be reused. Default for UDP is 1 minute.

Functions

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